diff --git a/Gemfile.lock b/Gemfile.lock index d2216967a..1cafe48e2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (2.66.0) + view_component (2.67.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 5a4bc80f2..2f9814252 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -9,6 +9,8 @@ title: Changelog ## main +## 2.67.0 + * Use ViewComponent::Base.config as the internal endpoint for config. *Simon Fish* diff --git a/docs/_data/library.yml b/docs/_data/library.yml index f78aee448..02a66dddb 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 2.66.0 +version: 2.67.0 diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index a6ae24b8f..c273dc664 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,7 +3,7 @@ module ViewComponent module VERSION MAJOR = 2 - MINOR = 66 + MINOR = 67 PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".")