From 2f4f06217a780a0f31084cf390094034a04455ea Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Thu, 31 Oct 2024 12:14:40 -0700 Subject: [PATCH] release 3.20.0 (#2150) --- Gemfile.lock | 2 +- docs/CHANGELOG.md | 2 ++ docs/_data/library.yml | 2 +- lib/view_component/version.rb | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 679264cb8..b70346e73 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (3.19.0) + view_component (3.20.0) activesupport (>= 5.2.0, < 8.1) concurrent-ruby (~> 1.0) method_source (~> 1.0) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 60d432c99..da9a320c4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,8 @@ nav_order: 5 ## main +## 3.20.0 + * Allow rendering `with_collection` to accept an optional `spacer_component` to be rendered between each item. *Nick Coyne* diff --git a/docs/_data/library.yml b/docs/_data/library.yml index 66e81640b..07c611dbe 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 3.19.0 +version: 3.20.0 diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index 0f0b98f6a..13e6bd37d 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,7 +3,7 @@ module ViewComponent module VERSION MAJOR = 3 - MINOR = 19 + MINOR = 20 PATCH = 0 PRE = nil