From 25115593d31bf1b145dd40302d71492a8bc4dc56 Mon Sep 17 00:00:00 2001 From: Robert Passas <35311744+rpassas@users.noreply.github.com> Date: Mon, 13 May 2024 13:24:53 -0400 Subject: [PATCH] Release 0436 (#489) * change log * version bump --- CHANGELOG.md | 6 +++++- Gemfile.lock | 16 ++++++++-------- lib/inferno/version.rb | 2 +- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab9fd5089..8c83951f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ -# 0.4.35 +# 0.4.36 +* FI-2533: Add general test endpoints by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/472 +* FI-2525: Update colors in Core by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/488 +* FI-2647 Add TestKit metadata DRAFT by @arscan in https://github.com/inferno-framework/inferno-core/pull/476 +# 0.4.35 * Bump follow-redirects from 1.15.5 to 1.15.6 by @dependabot in https://github.com/inferno-framework/inferno-core/pull/479 * Bump express from 4.18.3 to 4.19.2 by @dependabot in https://github.com/inferno-framework/inferno-core/pull/480 * Bump webpack-dev-middleware from 5.3.3 to 5.3.4 by @dependabot in https://github.com/inferno-framework/inferno-core/pull/481 diff --git a/Gemfile.lock b/Gemfile.lock index 129b2684d..68e4e5e3b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.35) + inferno_core (0.4.36) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -45,7 +45,7 @@ GEM base64 (0.2.0) bcp47 (0.3.3) i18n - bigdecimal (3.1.7) + bigdecimal (3.1.8) blueprinter (0.25.2) byebug (11.1.3) codecov (0.5.2) @@ -169,24 +169,24 @@ GEM method_source (1.0.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0305) + mime-types-data (3.2024.0507) minitest (5.18.0) multi_json (1.15.0) multi_xml (0.7.1) bigdecimal (~> 3.1) - multipart-post (2.4.0) + multipart-post (2.4.1) mustermann (1.1.2) ruby2_keywords (~> 0.0.1) mustermann-contrib (1.1.2) hansi (~> 0.2.0) mustermann (= 1.1.2) netrc (0.11.0) - nio4r (2.7.1) - nokogiri (1.16.4-arm64-darwin) + nio4r (2.7.3) + nokogiri (1.16.5-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.4-x86_64-darwin) + nokogiri (1.16.5-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.4-x86_64-linux) + nokogiri (1.16.5-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 6ea85a65d..740f53f2b 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.35'.freeze + VERSION = '0.4.36'.freeze end