From 485175830ce36a9b5b431f3ad16730a2a5211c7b Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Sun, 29 Jan 2023 10:23:28 -0300 Subject: [PATCH] Release v5.2.0 --- CHANGELOG.md | 3 +++ Gemfile.lock | 36 ++++++++++++++++++------------------ lib/simple_form/version.rb | 2 +- 3 files changed, 22 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2c118ad..fd5d031b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Unreleased + +## 5.2.0 + * Add support for Rails 7.0 and Ruby 3.1/3.2 (no changes required) * Fix escaping issue on boolean input with `include_hidden: false` and custom wrapper. * Update Bootstrap install generator version 5. [@mhw](https://github.com/mhw) diff --git a/Gemfile.lock b/Gemfile.lock index 25fd0cf7..94f99b78 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,36 +1,36 @@ PATH remote: . specs: - simple_form (5.1.0) + simple_form (5.2.0) actionpack (>= 5.2) activemodel (>= 5.2) GEM remote: https://rubygems.org/ specs: - actionpack (7.0.4) - actionview (= 7.0.4) - activesupport (= 7.0.4) + actionpack (7.0.4.2) + actionview (= 7.0.4.2) + activesupport (= 7.0.4.2) rack (~> 2.0, >= 2.2.0) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actionview (7.0.4) - activesupport (= 7.0.4) + actionview (7.0.4.2) + activesupport (= 7.0.4.2) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - activemodel (7.0.4) - activesupport (= 7.0.4) - activesupport (7.0.4) + activemodel (7.0.4.2) + activesupport (= 7.0.4.2) + activesupport (7.0.4.2) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) builder (3.2.4) - concurrent-ruby (1.1.10) - countries (5.3.0) + concurrent-ruby (1.2.0) + countries (5.3.1) unaccent (~> 0.3) country_select (8.0.1) countries (~> 5.0) @@ -48,24 +48,24 @@ GEM mini_portile2 (~> 2.8.0) racc (~> 1.4) racc (1.6.2) - rack (2.2.5) + rack (2.2.6.2) rack-test (2.0.2) rack (>= 1.3) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) - rails-html-sanitizer (1.4.4) + rails-html-sanitizer (1.5.0) loofah (~> 2.19, >= 2.19.1) - railties (7.0.4) - actionpack (= 7.0.4) - activesupport (= 7.0.4) + railties (7.0.4.2) + actionpack (= 7.0.4.2) + activesupport (= 7.0.4.2) method_source rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) rake (13.0.6) thor (1.2.1) - tzinfo (2.0.5) + tzinfo (2.0.6) concurrent-ruby (~> 1.0) unaccent (0.4.0) zeitwerk (2.6.6) @@ -82,4 +82,4 @@ DEPENDENCIES simple_form! BUNDLED WITH - 2.4.3 + 2.4.5 diff --git a/lib/simple_form/version.rb b/lib/simple_form/version.rb index adb4bbe2..f2e9b229 100644 --- a/lib/simple_form/version.rb +++ b/lib/simple_form/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module SimpleForm - VERSION = "5.1.0".freeze + VERSION = "5.2.0".freeze end