diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d4cea85..d4e449cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (unreleased) +## Version 1.13.0 + * Remove support for Ruby `< 2.5`. * Coerce `:route_prefix` config option to a Symbol, ensuring compatibility with Rails versions that have resolved CVE-2021-22885. diff --git a/Gemfile.lock b/Gemfile.lock index 0877b200..3e8b6355 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inherited_resources (1.12.0) + inherited_resources (1.13.0) actionpack (>= 5.2, < 6.2) has_scope (~> 0.6) railties (>= 5.2, < 6.2) diff --git a/lib/inherited_resources/version.rb b/lib/inherited_resources/version.rb index 9d1bba1a..8a2e854b 100644 --- a/lib/inherited_resources/version.rb +++ b/lib/inherited_resources/version.rb @@ -1,3 +1,3 @@ module InheritedResources - VERSION = '1.12.0'.freeze + VERSION = '1.13.0'.freeze end diff --git a/test/rails_52/Gemfile.lock b/test/rails_52/Gemfile.lock index 64393b78..befcff09 100644 --- a/test/rails_52/Gemfile.lock +++ b/test/rails_52/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - inherited_resources (1.12.0) + inherited_resources (1.13.0) actionpack (>= 5.2, < 6.2) has_scope (~> 0.6) railties (>= 5.2, < 6.2) diff --git a/test/rails_60/Gemfile.lock b/test/rails_60/Gemfile.lock index 1133e932..859503fb 100644 --- a/test/rails_60/Gemfile.lock +++ b/test/rails_60/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - inherited_resources (1.12.0) + inherited_resources (1.13.0) actionpack (>= 5.2, < 6.2) has_scope (~> 0.6) railties (>= 5.2, < 6.2)