diff --git a/CHANGELOG.md b/CHANGELOG.md index 805909b75..0bd09627c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.3.1 + +* Fix a bug which prevented a session from loading if it had results which + referred to a test which had been removed or whose id had changed. +* Fix an bug which caused only the first page to appear in the print report + view. + # 0.3.0 * Various minor UI improvements diff --git a/Gemfile.lock b/Gemfile.lock index 48d3e352c..b0fab0213 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.3.0) + inferno_core (0.3.1) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) @@ -172,9 +172,9 @@ GEM multipart-post (2.1.1) netrc (0.11.0) nio4r (2.5.8) - nokogiri (1.13.3-x86_64-darwin) + nokogiri (1.13.4-x86_64-darwin) racc (~> 1.4) - nokogiri (1.13.3-x86_64-linux) + nokogiri (1.13.4-x86_64-linux) racc (~> 1.4) oauth2 (1.4.9) faraday (>= 0.17.3, < 3.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index b6d3d4bef..f51495138 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'.freeze + VERSION = '0.3.1'.freeze end