From c6eb8b513670bfd7cfe5438c65685da01038c6dd Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Fri, 2 Apr 2021 12:39:38 -0600 Subject: [PATCH] release 2.29.0 --- CHANGELOG.md | 2 ++ Gemfile.lock | 2 +- lib/view_component/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01fc69691..f5f8b7c5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## main +## 2.29.0 + * Allow Slot lambdas to share data from the parent component and allow chaining on the returned component. *Sjors Baltus, Blake Williams* diff --git a/Gemfile.lock b/Gemfile.lock index 5eb6752fd..ee16dfc77 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -87,7 +87,7 @@ GIT PATH remote: . specs: - view_component (2.28.0) + view_component (2.29.0) activesupport (>= 5.0.0, < 7.0) GEM diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index a726911ff..63c3d7fc0 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,7 +3,7 @@ module ViewComponent module VERSION MAJOR = 2 - MINOR = 28 + MINOR = 29 PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".")