diff --git a/Gemfile.lock b/Gemfile.lock index 3b3cf6880..73f30d845 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (2.81.0) + view_component (2.82.0) 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 ae82ae217..81048b707 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,8 @@ nav_order: 5 ## main +## 2.82.0 + * Revert "Avoid loading ActionView::Base during initialization (#1528)" *Jon Rohan* diff --git a/docs/_data/library.yml b/docs/_data/library.yml index eee9a5c15..c6b7ec5fc 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 2.81.0 +version: 2.82.0 diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index d667f8c4d..2d72ee384 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,7 +3,7 @@ module ViewComponent module VERSION MAJOR = 2 - MINOR = 81 + MINOR = 82 PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".")