Skip to content

Commit

Permalink
Merge pull request #35 from pelargir/rails-7
Browse files Browse the repository at this point in the history
Rails 7 compatibility
  • Loading branch information
pelargir authored Jan 10, 2022
2 parents 8183201 + d879cd9 commit 33d5872
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
9 changes: 8 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']
rails-version: ['3.2', '4.0', '4.1', '4.2', '5.0', '5.1', '5.2', '6.0', '6.1', '7.0']
ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0']
exclude:
- rails-version: '3.2'
Expand Down Expand Up @@ -49,6 +49,13 @@ jobs:

- rails-version: '6.1'
ruby-version: '2.4'

- rails-version: '7.0'
ruby-version: '2.4'
- rails-version: '7.0'
ruby-version: '2.5'
- rails-version: '7.0'
ruby-version: '2.6'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2022-01-04 - v0.9.9

2022-01-04 - Rails 7 compatibility [pelargir]

2021-10-11 - v0.9.8

2021-10-10 - Custom session timeout method [JunaidUK]
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"]
spec.add_dependency "actionpack", [">= 3.2", "< 7.1"]
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 = "0.9.8"
VERSION = "0.9.9"
end
end
end

0 comments on commit 33d5872

Please sign in to comment.