Skip to content

Commit

Permalink
Add 0.11.2 release version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesterovskiy committed Jul 22, 2020
1 parent d4a7d0c commit 38068f1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## [Unreleased]

## [0.11.2] - 2020-07-22
### Changed
- Silence deprecation warning when using with redis gem v4.2+

## [0.11.1] - 2019-08-22
Expand Down
2 changes: 1 addition & 1 deletion lib/redis-session-store.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Redis session storage for Rails, and for Rails only. Derived from
# the MemCacheStore code, simply dropping in Redis instead.
class RedisSessionStore < ActionDispatch::Session::AbstractStore
VERSION = '0.11.1'.freeze
VERSION = '0.11.2'.freeze
# Rails 3.1 and beyond defines the constant elsewhere
unless defined?(ENV_SESSION_OPTIONS_KEY)
ENV_SESSION_OPTIONS_KEY = if Rack.release.split('.').first.to_i > 1
Expand Down
2 changes: 1 addition & 1 deletion redis-session-store.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
gem.version = File.read('lib/redis-session-store.rb')
.match(/^ VERSION = '(.*)'/)[1]

gem.add_runtime_dependency 'actionpack', '>= 3'
gem.add_runtime_dependency 'actionpack', '~> 3'
gem.add_runtime_dependency 'redis', '>= 3', '< 5'

gem.add_development_dependency 'fakeredis', '~> 0.5'
Expand Down

0 comments on commit 38068f1

Please sign in to comment.