diff --git a/CHANGELOG.md b/CHANGELOG.md index 00a38ddf8..ae5ce5053 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.4.11 +* Fix the `test_runs/:test_run_id/results` route. + # 0.4.10 * Add the `--watch` option to `inferno start` to automatically restart Inferno when files change. diff --git a/Gemfile.lock b/Gemfile.lock index 672226900..6e43712fb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.10) + inferno_core (0.4.11) activesupport (~> 6.1) base62-rb (= 0.3.1) blueprinter (= 0.25.2) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index f3786d8da..4e12f40fc 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.10'.freeze + VERSION = '0.4.11'.freeze end