Skip to content

Commit

Permalink
Merge pull request #49 from jeanpauldejong/chore/rails-7.2-compatibility
Browse files Browse the repository at this point in the history
chore: update compatibility with rails 7.2
  • Loading branch information
pelargir authored Aug 19, 2024
2 parents 0fa1d9f + 3fe2d09 commit 7c21a49
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/minitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rails-version: ['3.2', '4.0', '4.1', '4.2', '5.0', '5.1', '5.2', '6.0', '6.1', '7.0.1', '7.1']
rails-version: ['3.2', '4.0', '4.1', '4.2', '5.0', '5.1', '5.2', '6.0', '6.1', '7.0.1', '7.1', '7.2']
ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
exclude:
- rails-version: '3.2'
Expand Down Expand Up @@ -99,6 +99,17 @@ jobs:
ruby-version: '2.5'
- rails-version: '7.1'
ruby-version: '2.6'

- rails-version: '7.2'
ruby-version: '2.4'
- rails-version: '7.2'
ruby-version: '2.5'
- rails-version: '7.2'
ruby-version: '2.6'
- rails-version: '7.2'
ruby-version: '2.7'
- rails-version: '7.2'
ruby-version: '3.0'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion auto-session-timeout.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_dependency "actionpack", [">= 3.2", "< 7.2"]
spec.add_dependency "actionpack", [">= 3.2", "< 7.3"]
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", [">= 4.2", "< 6"]
Expand Down
2 changes: 1 addition & 1 deletion lib/auto/session/timeout/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Auto
module Session
module Timeout
VERSION = "1.1"
VERSION = "1.2"
end
end
end

0 comments on commit 7c21a49

Please sign in to comment.