diff --git a/CHANGELOG.md b/CHANGELOG.md index 5244e0e..48d2c6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ### Unreleased +### Curly 3.2.0 (June 1, 2023) + +* Add support for Ruby 3.2 +* Drop support for Ruby 2.6 +* Drop support for Rails 4.2 + ### Curly 3.1.0 (November, 21, 2022) * Add support for Ruby 3.0 & 3.1 diff --git a/gemfiles/rails5.1.gemfile.lock b/gemfiles/rails5.1.gemfile.lock index a81123c..bb220fc 100644 --- a/gemfiles/rails5.1.gemfile.lock +++ b/gemfiles/rails5.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - curly-templates (3.1.0) + curly-templates (3.2.0) actionpack (>= 5.1, < 7.1) sorted_set diff --git a/gemfiles/rails5.2.gemfile.lock b/gemfiles/rails5.2.gemfile.lock index b4b102c..b1b5d91 100644 --- a/gemfiles/rails5.2.gemfile.lock +++ b/gemfiles/rails5.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - curly-templates (3.1.0) + curly-templates (3.2.0) actionpack (>= 5.1, < 7.1) sorted_set diff --git a/gemfiles/rails6.0.gemfile.lock b/gemfiles/rails6.0.gemfile.lock index b4f2f56..fe6a12a 100644 --- a/gemfiles/rails6.0.gemfile.lock +++ b/gemfiles/rails6.0.gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: .. specs: - curly-templates (3.1.0) + curly-templates (3.2.0) actionpack (>= 5.1, < 7.1) sorted_set diff --git a/gemfiles/rails6.1.gemfile.lock b/gemfiles/rails6.1.gemfile.lock index a2f58ea..e68d76d 100644 --- a/gemfiles/rails6.1.gemfile.lock +++ b/gemfiles/rails6.1.gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: .. specs: - curly-templates (3.1.0) + curly-templates (3.2.0) actionpack (>= 5.1, < 7.1) sorted_set diff --git a/gemfiles/rails7.0.gemfile.lock b/gemfiles/rails7.0.gemfile.lock index 8d86287..b3b8498 100644 --- a/gemfiles/rails7.0.gemfile.lock +++ b/gemfiles/rails7.0.gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: .. specs: - curly-templates (3.1.0) + curly-templates (3.2.0) actionpack (>= 5.1, < 7.1) sorted_set diff --git a/lib/curly/version.rb b/lib/curly/version.rb index 3e2ceea..dc97f75 100644 --- a/lib/curly/version.rb +++ b/lib/curly/version.rb @@ -1,3 +1,3 @@ module Curly - VERSION = "3.1.0" + VERSION = "3.2.0" end