diff --git a/Gemfile.lock b/Gemfile.lock index e5377c6f6..5d925e051 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (3.15.0) + view_component (3.15.1) activesupport (>= 5.2.0, < 8.0) concurrent-ruby (~> 1.0) method_source (~> 1.0) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c42cda835..3e8da2d20 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,8 @@ nav_order: 5 ## main +## 3.15.1 + * Re-add `@private`, undocumented `.identifier` method that was only meant for internal framework use but was used by some downstream consumers. This method will be removed in a coming minor release. *Joel Hawksley* diff --git a/docs/_data/library.yml b/docs/_data/library.yml index e8add7eee..3a7e15bb2 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 3.15.0 +version: 3.15.1 diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index fba806f58..aae5407a5 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -4,7 +4,7 @@ module ViewComponent module VERSION MAJOR = 3 MINOR = 15 - PATCH = 0 + PATCH = 1 PRE = nil STRING = [MAJOR, MINOR, PATCH, PRE].compact.join(".")