diff --git a/CHANGES.md b/CHANGES.md index c65a60e..39146c1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ ## Changes +# 1.13.0 + +- add Ruby 3.2 support +- remove Ruby 2.7 support +- add active_support 7.1 support +- remove active_support 6.x support + # 1.12.1 - re-enable aliases when parsing config yaml file diff --git a/couch_potato-rspec.gemspec b/couch_potato-rspec.gemspec index 2900f83..a9cdc0c 100644 --- a/couch_potato-rspec.gemspec +++ b/couch_potato-rspec.gemspec @@ -11,7 +11,7 @@ Gem::Specification.new do |s| s.version = CouchPotato::RSPEC_VERSION s.platform = Gem::Platform::RUBY - s.add_dependency 'rspec', '~>3.4' + s.add_dependency 'rspec', '~>3.12' s.add_development_dependency 'rake' s.add_dependency 'execjs', '~>2.7' diff --git a/lib/couch_potato/version.rb b/lib/couch_potato/version.rb index 344e7e3..d8990ce 100644 --- a/lib/couch_potato/version.rb +++ b/lib/couch_potato/version.rb @@ -1,4 +1,4 @@ module CouchPotato - VERSION = '1.12.1'.freeze - RSPEC_VERSION = '4.0.2'.freeze + VERSION = '1.13.0'.freeze + RSPEC_VERSION = '4.1.0'.freeze end