From 7eac9a74ad76d88b3f963cccec3d29a2020cdc61 Mon Sep 17 00:00:00 2001 From: Cameron Dutro Date: Wed, 17 Apr 2024 14:26:39 -0700 Subject: [PATCH] release 3.12.1 (#2018) --- 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 53b2c3e20..ab62621a1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (3.12.0) + view_component (3.12.1) activesupport (>= 5.2.0, < 8.0) concurrent-ruby (~> 1.0) method_source (~> 1.0) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index f27a00118..9f54567c9 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,8 @@ nav_order: 5 ## main +## 3.12.1 + * Ensure content is rendered correctly for forwarded slots. *Cameron Dutro* diff --git a/docs/_data/library.yml b/docs/_data/library.yml index 295ef48f5..78bc70c89 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 3.12.0 +version: 3.12.1 diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index fb1225fc5..4129e432a 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -4,7 +4,7 @@ module ViewComponent module VERSION MAJOR = 3 MINOR = 12 - PATCH = 0 + PATCH = 1 PRE = nil STRING = [MAJOR, MINOR, PATCH, PRE].compact.join(".")