From 2636817cf5f6b0cc190ccab72bee427d692bdcc7 Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Fri, 6 Dec 2024 09:51:56 -0500 Subject: [PATCH] Release 0.5.2 (#569) * bump version * bump rexml * update docs dependencies * update changelog --- CHANGELOG.md | 7 +++++++ Gemfile.lock | 4 ++-- docs/Gemfile.lock | 17 +++++++++-------- lib/inferno/version.rb | 2 +- 4 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87ff1ba12..ee61d92be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.5.2 +* FI-3366: Fetch report date from test results by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/567 +* FI-3019: Add custom blockquote styles by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/556 +* FI-2622: Update meta tags for link unfurling by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/553 +* FI-2961 execute preset support by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/565 +* FI-3511: Fix json handling by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/568 + ## 0.5.1 * FI-3097: Maintain checkbox label colors on error by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/537 * Fi 2962 execute outputters by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/541 diff --git a/Gemfile.lock b/Gemfile.lock index 995ba3f17..432ba6327 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.5.1) + inferno_core (0.5.2) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -239,7 +239,7 @@ GEM http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 4.0) netrc (~> 0.8) - rexml (3.3.8) + rexml (3.3.9) rouge (4.4.0) rspec (3.13.0) rspec-core (~> 3.13.0) diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index 5dd27fe8a..7ee94baa5 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -15,7 +15,7 @@ GEM coffee-script-source (1.11.1) colorator (1.1.0) commonmarker (0.23.10) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.4) dnsruby (1.72.0) simpleidn (~> 0.2.1) em-websocket (0.5.3) @@ -210,12 +210,12 @@ GEM jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) - minitest (5.22.3) + minitest (5.25.4) net-http (0.4.1) uri - nokogiri (1.16.4-arm64-darwin) + nokogiri (1.16.8-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.4-x86_64-darwin) + nokogiri (1.16.8-x86_64-darwin) racc (~> 1.4) octokit (4.25.1) faraday (>= 1, < 3) @@ -223,11 +223,11 @@ GEM pathutil (0.16.2) forwardable-extended (~> 2.6) public_suffix (4.0.7) - racc (1.7.3) + racc (1.8.1) rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) - rexml (3.2.6) + rexml (3.3.9) rouge (3.26.0) rubyzip (2.3.2) safe_yaml (1.0.5) @@ -253,10 +253,11 @@ GEM unf_ext (0.0.9.1) unicode-display_width (1.8.0) uri (0.13.0) - webrick (1.8.1) - zeitwerk (2.6.13) + webrick (1.9.1) + zeitwerk (2.6.18) PLATFORMS + arm64-darwin-21 arm64-darwin-22 x86_64-darwin-22 diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 7cba0a7eb..fcfe8dd73 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.5.1'.freeze + VERSION = '0.5.2'.freeze end