From 0a5e0fa3e75acce12bbb09471142452952664614 Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Thu, 1 Dec 2022 10:39:28 -0500 Subject: [PATCH] Release 0.4.5 (#292) * bump version * update changelog --- CHANGELOG.md | 10 ++++++++++ Gemfile.lock | 2 +- lib/inferno/version.rb | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 308cc3be6..aafc21114 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.4.5 +* Remove the copy button and url truncation from print view. +* Improve the display for runnables in the ruby console. +* Display in-progress icons for running tests. +* Indicate incoming requests with an icon rather than incoming/outgoing labels. +* Remove timestamps from headers and messages tables. +* Remove id/title tooltips. +* Automatically open groups with a skip result. +* Add DSL support for the FHIR create interaction. + # 0.4.4 * Update hanami-router to fix a bug which prevented Inferno from handling inputs containing `%` characters. diff --git a/Gemfile.lock b/Gemfile.lock index 0bb584495..d0abd4e15 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.4) + inferno_core (0.4.5) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 4505e3621..915b605ee 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.4'.freeze + VERSION = '0.4.5'.freeze end