From 7f4ea54a7b7e7c8edbcdfb5c6fbdf1f18e70ebda Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Tue, 9 Aug 2022 07:49:26 -0600 Subject: [PATCH] release 2.66.0 (#1461) --- Gemfile.lock | 2 +- docs/CHANGELOG.md | 2 ++ docs/_data/library.yml | 2 +- lib/view_component/version.rb | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 38ddf6f69..d2216967a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (2.65.0) + view_component (2.66.0) activesupport (>= 5.0.0, < 8.0) concurrent-ruby (~> 1.0) method_source (~> 1.0) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 0aab0efd8..16d9adcd4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -9,6 +9,8 @@ title: Changelog ## main +## 2.66.0 + * Add missing `generate.sidecar`, `generate.stimulus_controller`, `generate.locale`, `generate.distinct_locale_files`, `generate.preview` config options to `config.view_component`. *Simon Fish* diff --git a/docs/_data/library.yml b/docs/_data/library.yml index b896462c9..f78aee448 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 2.65.0 +version: 2.66.0 diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index 8244cb28e..a6ae24b8f 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,7 +3,7 @@ module ViewComponent module VERSION MAJOR = 2 - MINOR = 65 + MINOR = 66 PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".")