From 4f9b7f2413b26a35b80c88b8ed9ef24cf155927e Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Thu, 6 Apr 2023 13:39:23 -0400 Subject: [PATCH] Release 0.4.12 (#349) * bump version * update changelog --- CHANGELOG.md | 7 +++++++ Gemfile.lock | 18 +++++++++--------- lib/inferno/version.rb | 2 +- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae5ce5053..1233a61b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.4.12 +* Add a checkbox input type. +* Update the UI to display input descriptions for radio button inputs. +* Add a link to the JSON API docs to the footer. +* Display a warning when a preset contains an unknown input. +* Add the ability to link to a test/group via its short id. + # 0.4.11 * Fix the `test_runs/:test_run_id/results` route. diff --git a/Gemfile.lock b/Gemfile.lock index 6e43712fb..2bd780d8f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.11) + inferno_core (0.4.12) activesupport (~> 6.1) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -49,7 +49,7 @@ GEM simplecov (>= 0.15, < 0.22) coderay (1.1.3) concurrent-ruby (1.2.0) - connection_pool (2.3.0) + connection_pool (2.4.0) crack (0.4.5) rexml database_cleaner-core (2.0.1) @@ -191,7 +191,7 @@ GEM hansi (~> 0.2.0) mustermann (= 1.1.2) netrc (0.11.0) - nio4r (2.5.8) + nio4r (2.5.9) nokogiri (1.14.2-arm64-darwin) racc (~> 1.4) nokogiri (1.14.2-x86_64-darwin) @@ -235,7 +235,7 @@ GEM mime-types (>= 1.16, < 4.0) netrc (~> 0.8) rexml (3.2.5) - rouge (3.30.0) + rouge (4.1.0) rspec (3.11.0) rspec-core (~> 3.11.0) rspec-expectations (~> 3.11.0) @@ -282,9 +282,9 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) - sqlite3 (1.6.1-arm64-darwin) - sqlite3 (1.6.1-x86_64-darwin) - sqlite3 (1.6.1-x86_64-linux) + sqlite3 (1.6.2-arm64-darwin) + sqlite3 (1.6.2-x86_64-darwin) + sqlite3 (1.6.2-x86_64-linux) strings (0.2.1) strings-ansi (~> 0.2) unicode-display_width (>= 1.5, < 3.0) @@ -293,10 +293,10 @@ GEM thor (1.2.1) tilt (2.1.0) tty-color (0.6.0) - tty-markdown (0.7.1) + tty-markdown (0.7.2) kramdown (>= 1.16.2, < 3.0) pastel (~> 0.8) - rouge (~> 3.14) + rouge (>= 3.14, < 5.0) strings (~> 0.2.0) tty-color (~> 0.5) tty-screen (~> 0.8) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 4e12f40fc..d74dbbcb6 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.11'.freeze + VERSION = '0.4.12'.freeze end