From e974bc701c201cddd6d9728fb7bcff05f33583b8 Mon Sep 17 00:00:00 2001 From: rpassas <35311744+rpassas@users.noreply.github.com> Date: Wed, 13 Sep 2023 14:41:46 -0400 Subject: [PATCH] Release 0.4.20 (#395) * changelog * bump version --------- Co-authored-by: rpassas --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 8 ++++---- lib/inferno/version.rb | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f175a2ed8..e1cf3c5bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.4.20 +* FI-2077: Improve colors and contrasts for a11y by @AlyssaWang in + https://github.com/inferno-framework/inferno-core/pull/392 +* Revert "FI-2035: Improve error handling for validator errors (#379)" by + @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/393 + # 0.4.19 * FI-2053: Fix inputs dialog overflow by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/382 diff --git a/Gemfile.lock b/Gemfile.lock index 7f3f435a4..eb650b291 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.19) + inferno_core (0.4.20) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -282,9 +282,9 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) - sqlite3 (1.6.5-arm64-darwin) - sqlite3 (1.6.5-x86_64-darwin) - sqlite3 (1.6.5-x86_64-linux) + sqlite3 (1.6.6-arm64-darwin) + sqlite3 (1.6.6-x86_64-darwin) + sqlite3 (1.6.6-x86_64-linux) strings (0.2.1) strings-ansi (~> 0.2) unicode-display_width (>= 1.5, < 3.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 3d5ed52cf..5eaa87402 100644 --- a/lib/inferno/version.rb +++ b/lib/inferno/version.rb @@ -1,4 +1,4 @@ module Inferno # Standard patterns for gem versions: https://guides.rubygems.org/patterns/ - VERSION = '0.4.19'.freeze + VERSION = '0.4.20'.freeze end