diff --git a/CHANGELOG.md b/CHANGELOG.md index 55d6f9add..4e2ea105e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.4.32 +* FI-2495: Create sessions via form POST by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/459 +* FI-2156: Test kit dependency update script by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/457 +* Update README.md.tt by @bmath10 in https://github.com/inferno-framework/inferno-core/pull/471 +* FI-2349: Input Chaining Fix by @emichaud998 in https://github.com/inferno-framework/inferno-core/pull/437 + # 0.4.31 * Fi 2576 inferno new gemspec patch by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/465 * fix: id should be 36 char long by @rpassas in https://github.com/inferno-framework/inferno-core/pull/467 diff --git a/Gemfile.lock b/Gemfile.lock index fe2b00449..87eb3b511 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.31) + inferno_core (0.4.32) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -193,12 +193,12 @@ GEM hansi (~> 0.2.0) mustermann (= 1.1.2) netrc (0.11.0) - nio4r (2.7.0) - nokogiri (1.16.2-arm64-darwin) + nio4r (2.7.1) + nokogiri (1.16.3-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.2-x86_64-darwin) + nokogiri (1.16.3-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.2-x86_64-linux) + nokogiri (1.16.3-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) @@ -237,7 +237,7 @@ GEM mime-types (>= 1.16, < 4.0) netrc (~> 0.8) rexml (3.2.5) - rouge (4.2.0) + rouge (4.2.1) rspec (3.11.0) rspec-core (~> 3.11.0) rspec-expectations (~> 3.11.0) @@ -284,9 +284,9 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) - sqlite3 (1.7.2-arm64-darwin) - sqlite3 (1.7.2-x86_64-darwin) - sqlite3 (1.7.2-x86_64-linux) + sqlite3 (1.7.3-arm64-darwin) + sqlite3 (1.7.3-x86_64-darwin) + sqlite3 (1.7.3-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 15a32d854..732d6f5db 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.31'.freeze + VERSION = '0.4.32'.freeze end