diff --git a/Gemfile.lock b/Gemfile.lock index 6f1a883ef..f5b1129bc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (3.23.1) + view_component (3.23.2) activesupport (>= 5.2.0, < 8.1) concurrent-ruby (~> 1) method_source (~> 1.0) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 7a5c7cb60..312307ac9 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,8 @@ nav_order: 6 ## main +## 3.23.2 + * Include .tt files in published gem. Fixes templates not being available when using generators. *Florian Aßmann* diff --git a/docs/_data/library.yml b/docs/_data/library.yml index 3195902c7..2c39e542f 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 3.23.1 +version: 3.23.2 diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index 37275bb0c..bb8114fe6 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -4,7 +4,7 @@ module ViewComponent module VERSION MAJOR = 3 MINOR = 23 - PATCH = 1 + PATCH = 2 PRE = nil STRING = [MAJOR, MINOR, PATCH, PRE].compact.join(".")