Skip to content

Commit

Permalink
Ruby 3.4 support (#8)
Browse files Browse the repository at this point in the history
* Add Ruby 3.4 to CI matrix; remove unsupported Rubies

* Add base64 gem as dependency; bump minimum Ruby version to 2.7
  • Loading branch information
pilaf authored Dec 25, 2024
1 parent 0db5fc1 commit 4cc40a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3, jruby, truffleruby]
ruby: [2.7, '3.0', 3.1, 3.2, 3.3, 3.4, jruby, truffleruby]

runs-on: ${{ matrix.os }}

name: Test against ${{ matrix.ruby }} on ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ signatures:

## Supported rubies

This gem is tested against and supports Ruby 2.4 through 3.3, JRuby and
This gem is tested against and supports Ruby 2.7 through 3.3, JRuby and
TruffleRuby.

## Development
Expand Down
3 changes: 2 additions & 1 deletion aws-cognito-srp.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ Gem::Specification.new do |spec|
end
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 2.4.0'
spec.required_ruby_version = '>= 2.7.0'

spec.add_dependency "aws-sdk-cognitoidentityprovider"
spec.add_dependency "base64"

spec.add_development_dependency "bundler", "~> 2.2"
spec.add_development_dependency "rake", "~> 13.0"
Expand Down

0 comments on commit 4cc40a3

Please sign in to comment.