From 2cb49f11bf7600992a92fcc3a54e320a5514cd3d Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Mon, 25 Jul 2022 12:52:40 -0600 Subject: [PATCH] release 2.62.0 (#1439) --- Gemfile.lock | 2 +- docs/CHANGELOG.md | 2 ++ docs/_data/library.yml | 2 +- lib/view_component/version.rb | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 321dd005d..90fa0a24a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (2.61.1) + view_component (2.62.0) activesupport (>= 5.0.0, < 8.0) method_source (~> 1.0) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index b6f92c1f8..9d7ea260d 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -9,6 +9,8 @@ title: Changelog ## main +## 2.62.0 + * Remove the experimental global output buffer feature. * Restore functionality that used to attempt to compile templates on each call to `#render_in`. * Un-pin `rails` `main` dependency. diff --git a/docs/_data/library.yml b/docs/_data/library.yml index 6aa621e40..80f58f2c0 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 2.61.1 +version: 2.62.0 diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index ba16a605c..7d2628e7a 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,8 +3,8 @@ module ViewComponent module VERSION MAJOR = 2 - MINOR = 61 - PATCH = 1 + MINOR = 62 + PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".") end