From 7277a13f2aa781f621aef43fa43059e32d9d852f Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Tue, 16 Mar 2021 09:42:19 -0600 Subject: [PATCH] release 2.28.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 bb8faef5a..b7874ae6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## main +## 2.28.0 + * Include SlotableV2 by default in Base. **Note:** It's no longer necessary to include `ViewComponent::SlotableV2` to use Slots. *Joel Hawksley* diff --git a/Gemfile.lock b/Gemfile.lock index 61d78db72..9b898384b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -87,7 +87,7 @@ GIT PATH remote: . specs: - view_component (2.27.0) + view_component (2.28.0) activesupport (>= 5.0.0, < 7.0) GEM diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index db2ecb53c..a726911ff 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,7 +3,7 @@ module ViewComponent module VERSION MAJOR = 2 - MINOR = 27 + MINOR = 28 PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".")