Skip to content

Commit 1acb9e3

Browse files
committed
Update Ruby version requirements and modify CI configurations
1 parent 71b43ea commit 1acb9e3

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ jobs:
3333
os:
3434
- ubuntu-latest
3535
ruby:
36-
- "2.5"
37-
- "2.6"
3836
- "2.7"
3937
- "3.0"
4038
- "3.1"
@@ -46,10 +44,6 @@ jobs:
4644
- gemfiles/standalone.gemfile
4745
experimental: [false]
4846
include:
49-
- os: ubuntu-latest
50-
ruby: "2.5"
51-
gemfile: gemfiles/openssl.gemfile
52-
experimental: false
5347
- os: ubuntu-latest
5448
ruby: "truffleruby-head"
5549
gemfile: "gemfiles/standalone.gemfile"

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
[Full Changelog](https://github.com/jwt/ruby-jwt/compare/v3.1.2...v3.1.3)
66

7+
**Breaking changes:**
8+
- Drop support for Ruby 2.6 and older [#713](https://github.com/jwt/ruby-jwt/pull/713) ([@ydah](https://github.com/ydah))
9+
- Bump minimum json gem version to 2.6 [#713](https://github.com/jwt/ruby-jwt/pull/713) ([@ydah](https://github.com/ydah))
10+
711
**Features:**
812

913
- Add duplicate claim name detection per RFC 7519 Section 4 [#713](https://github.com/jwt/ruby-jwt/pull/713) ([@ydah](https://github.com/ydah))

ruby-jwt.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
1515
spec.description = 'A pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.'
1616
spec.homepage = 'https://github.com/jwt/ruby-jwt'
1717
spec.license = 'MIT'
18-
spec.required_ruby_version = '>= 2.5'
18+
spec.required_ruby_version = '>= 2.7'
1919
spec.metadata = {
2020
'bug_tracker_uri' => 'https://github.com/jwt/ruby-jwt/issues',
2121
'changelog_uri' => "https://github.com/jwt/ruby-jwt/blob/v#{JWT.gem_version}/CHANGELOG.md",

0 commit comments

Comments
 (0)