From 43c35c4266c3ca3abbbe7962760e71ce25f64726 Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Tue, 8 Aug 2023 08:24:22 -0400 Subject: [PATCH] Release 0.4.18 (#381) * bump version * update changelog --- CHANGELOG.md | 9 +++++++++ Gemfile.lock | 8 ++++---- lib/inferno/version.rb | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 190ee4c33..c0df4663d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.4.18 +* Fix a bug which could prevent some test results from appearing until the page + is reloaded. +* Add `vread`, `update`, `patch`, `history`, and system `search` interactions to + the FHIR DSL. +* Fix a JSON parse error which could occur for OAuth Credentials inputs when + switching between the normal input view and the JSON view. +* Make minor visual improvements. + # 0.4.17 * Fix a bug which prevented the swagger documentation from loading when no query parameters were provided. diff --git a/Gemfile.lock b/Gemfile.lock index 1d1dc5dba..4fdb00693 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.17) + inferno_core (0.4.18) activesupport (~> 6.1) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -178,9 +178,9 @@ GEM kramdown (2.4.0) rexml method_source (1.0.0) - mime-types (3.4.1) + mime-types (3.5.0) mime-types-data (~> 3.2015) - mime-types-data (3.2023.0218.1) + mime-types-data (3.2023.0808) minitest (5.18.0) multi_json (1.15.0) multi_xml (0.6.0) @@ -235,7 +235,7 @@ GEM mime-types (>= 1.16, < 4.0) netrc (~> 0.8) rexml (3.2.5) - rouge (4.1.2) + rouge (4.1.3) rspec (3.11.0) rspec-core (~> 3.11.0) rspec-expectations (~> 3.11.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 2d316e8c9..0f6f1b3fd 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.17'.freeze + VERSION = '0.4.18'.freeze end