Skip to content

Commit

Permalink
Update Ruby/Rails supported versions
Browse files Browse the repository at this point in the history
* Drop Ruby 2.6, 2.7
* Drop Rails 6.0
* Add Ruby 3.2, 3.3
* Add Rails 7.1
  • Loading branch information
Tabby committed Feb 20, 2024
1 parent 4a10baf commit 6b48205
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ jobs:
tests:
strategy:
matrix:
ruby-version: [2.6, 2.7, 3.0, 3.1]
rails-version: [6.0, 6.1, 7.0]
ruby-version: [3.0, 3.1, 3.2, 3.3]
rails-version: [6.1, 7.0, 7.1]
exclude:
- ruby-version: 2.6
rails-version: 7.0
- ruby-version: 3.1
rails-version: 6.1
- ruby-version: 3.2
rails-version: 6.1
runs-on: ubuntu-latest
env:
RAILS_VERSION: ${{ matrix.rails-version }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v2.0.0

- Drop ruby 2.6 and 2.7 support
- Drop Rails 6.0 support

# v1.2.0

- Add support for configuring multiple superclasses for the `DefineDeletionStrategy` cop [#98](https://github.com/gocardless/anony/pull/98)
Expand Down
2 changes: 1 addition & 1 deletion anony.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
end
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.6"
spec.required_ruby_version = ">= 3.0"

spec.add_development_dependency "bundler", "~> 2"
spec.add_development_dependency "gc_ruboconfig", "~> 3.6.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/anony/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Anony
VERSION = "1.2.0"
VERSION = "2.0.0"
end

0 comments on commit 6b48205

Please sign in to comment.