diff --git a/CHANGELOG.md b/CHANGELOG.md index ee61d92be..d8ca5897c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.5.3 +* FI-2748: Add TestKit to template by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/561 +* FI-3550: Handle optional waiting results by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/570 +* Fix SuiteEndpoint docs by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/571 +* FI-3376 Migrate Evaluator CLI into inferno core CLI by @jhlee-mitre in https://github.com/inferno-framework/inferno-core/pull/557 +* FI-3259: Include presets in gems by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/572 +* FI-3261: Add markdown support to input descriptions by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/546 + ## 0.5.2 * FI-3366: Fetch report date from test results by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/567 * FI-3019: Add custom blockquote styles by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/556 diff --git a/Gemfile.lock b/Gemfile.lock index 432ba6327..9fbe9d9d8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.5.2) + inferno_core (0.5.3) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index fcfe8dd73..b018af128 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.5.2'.freeze + VERSION = '0.5.3'.freeze end