diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 4772c30..9036010 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["2.6", "2.7", "3.0", "3.1.0"] + ruby: ["3.0", "3.1", "3.2"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.ruby-version b/.ruby-version index fd2a018..944880f 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.1.0 +3.2.0 diff --git a/.standard.yml b/.standard.yml index 3af9da5..f48d978 100644 --- a/.standard.yml +++ b/.standard.yml @@ -1 +1 @@ -ruby_version: 2.6 +ruby_version: 3.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 94cd31d..8d88184 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## Unreleased + +- [PLAT-1175] Update to Ruby 3.2 + ## 0.3.0 - [PLAT-183] Use github action in place of coveralls gem, build against ruby 3.1 diff --git a/s3-toolkit.gemspec b/s3-toolkit.gemspec index 1174202..2ba0958 100644 --- a/s3-toolkit.gemspec +++ b/s3-toolkit.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |spec| spec.executables = ["s3-toolkit"] spec.require_paths = ["lib"] - spec.required_ruby_version = ">= 2.6" + spec.required_ruby_version = ">= 3.0" spec.add_dependency "aws-sdk-s3", "~> 1" spec.add_dependency "dry-cli"