From cd029f7365e1911e963fdd87f5c652f3f04e992c Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Thu, 2 Jun 2022 15:53:36 -0600 Subject: [PATCH] release 2.56.2 (#1381) --- Gemfile.lock | 2 +- docs/CHANGELOG.md | 2 ++ lib/view_component/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 9f93288b4..338e7dc34 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (2.56.1) + view_component (2.56.2) activesupport (>= 5.0.0, < 8.0) method_source (~> 1.0) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c1b91c589..a72ed3d9f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -9,6 +9,8 @@ title: Changelog ## main +## 2.56.2 + * Restore removed `rendered_component`, marking it for deprecation in v3.0.0. *Tyson Gach*, *Richard Macklin*, *Joel Hawksley* diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index 22bbe7b2c..cf94d06e1 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -4,7 +4,7 @@ module ViewComponent module VERSION MAJOR = 2 MINOR = 56 - PATCH = 1 + PATCH = 2 STRING = [MAJOR, MINOR, PATCH].join(".") end