From d3a594920a14a692836392b5a7c0cd4708e25cb3 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Fri, 24 May 2024 11:44:19 -0300 Subject: [PATCH] Release v5.3.1 --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- lib/simple_form/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90de8c71..ead901b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Unreleased + + +## 5.3.1 + * Revert "Speed up input mapping lookup by avoiding rescuing exceptions" from v5.3.0, it caused a regression on dev/test environments with custom inputs. * Try a slightly different approach to input lookups, without relying on regexp, to see if that helps with performance as originally intended. * Add support to Ruby 3.3. (no changes required.) diff --git a/Gemfile.lock b/Gemfile.lock index ca531b9f..e69979ce 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - simple_form (5.3.0) + simple_form (5.3.1) actionpack (>= 5.2) activemodel (>= 5.2) diff --git a/lib/simple_form/version.rb b/lib/simple_form/version.rb index a38eb7ce..77475dfe 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.3.0".freeze + VERSION = "5.3.1".freeze end