From 90a24a4a5fcc15f82eb042e3978526e2f6719827 Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Tue, 12 Apr 2022 08:38:56 -0400 Subject: [PATCH] Release 0.3.0 (#167) * update version * update changelog * update changelog wording --- CHANGELOG.md | 21 +++++++++++++++++++++ Gemfile.lock | 2 +- lib/inferno/version.rb | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aebddbc22..805909b75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# 0.3.0 + +* Various minor UI improvements +* Improve how inputs are handled in the backend so that the UI can display + inputs exactly as received from the JSON api rather than needing to determine + which inputs to display itself. +* Add the ability to specify the order in which inputs appear in the UI. +* Add the ability to copy/paste JSON/YAML versions of inputs in the UI. +* Update the preset input selection UI. +* Add inputs/outputs to test and report displays in the UI. +* Add the ability to display a custom banner at the top of the page. +* Update the UI for suite configuration messages. Info and warning messages will + now be displayed in addition to error messages. +* Update the UI to not omit required indicators from locked inputs. +* Fix a bug where sometimes in an input would appear twice in the UI. +* Fix a bug where the *New Session* button was using the wrong url. +* Fix a bug where primitive extensions were stripped from resources before they + were validated. +* Fix a bug where a test run could be created without all of the required + inputs. + # 0.3.0.rc1 * Initial release candidate for 0.3.0 diff --git a/Gemfile.lock b/Gemfile.lock index 9ead64013..48d3e352c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.3.0.rc1) + inferno_core (0.3.0) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 2e6b45f56..b6d3d4bef 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.3.0.rc1'.freeze + VERSION = '0.3.0'.freeze end