From 280c902e626f31f69ab3164c06d1ddee2504c8c8 Mon Sep 17 00:00:00 2001 From: Hans Lemuet Date: Wed, 11 Oct 2023 23:51:34 +0200 Subject: [PATCH] Bump version for 0.2.6 --- CHANGELOG.md | 3 +++ Gemfile.lock | 8 ++++---- lib/view_component/form/version.rb | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac12b76..ac876d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.2.6] - 2023-10-11 +### Added - Support for Rails 7.1 (#151) - Add `element_proc` option to `CollectionCheckBoxesComponent` and `CollectionRadioButtonsComponent` to customize the way the elements will be shown (#142) diff --git a/Gemfile.lock b/Gemfile.lock index 95c855d..8977f33 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,9 +1,9 @@ PATH remote: . specs: - view_component-form (0.2.5) - actionview (>= 6.0.0, < 7.1) - activesupport (>= 6.0.0, < 7.1) + view_component-form (0.2.6) + actionview (>= 6.0.0, < 7.2) + activesupport (>= 6.0.0, < 7.2) view_component (>= 2.34.0, < 4.0) zeitwerk (~> 2.5) @@ -239,7 +239,7 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.4.2) - view_component (3.0.0) + view_component (3.6.0) activesupport (>= 5.2.0, < 8.0) concurrent-ruby (~> 1.0) method_source (~> 1.0) diff --git a/lib/view_component/form/version.rb b/lib/view_component/form/version.rb index e4f3179..04b8db1 100644 --- a/lib/view_component/form/version.rb +++ b/lib/view_component/form/version.rb @@ -2,6 +2,6 @@ module ViewComponent module Form - VERSION = "0.2.5" + VERSION = "0.2.6" end end