From 80e3d3503522e5f46fea261217aa8e1eddef8fb5 Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Wed, 16 Nov 2022 12:47:27 -0500 Subject: [PATCH] bump version and update changelog --- CHANGELOG.md | 3 +++ Gemfile.lock | 8 ++++---- lib/inferno/version.rb | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c68651696..dce7716c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.4.3 +* Remove timestamps from headers and messages. + # 0.4.2 * Add a missing require to the session data repository. * Fix UI bugs. diff --git a/Gemfile.lock b/Gemfile.lock index 13ebba09c..8d50b4751 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.2) + inferno_core (0.4.3) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) @@ -153,7 +153,7 @@ GEM mustermann (~> 1.0) mustermann-contrib (~> 1.0) rack (~> 2.0) - hanami-utils (2.0.0.beta1) + hanami-utils (2.0.0.rc1) concurrent-ruby (~> 1.0) dry-transformer (~> 0.1) hansi (0.2.1) @@ -252,8 +252,8 @@ GEM ruby-progressbar (1.11.0) ruby2_keywords (0.0.5) sequel (5.42.0) - sidekiq (6.5.7) - connection_pool (>= 2.2.5) + sidekiq (6.5.8) + connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) simplecov (0.21.2) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 633a24c84..5305c0827 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.2'.freeze + VERSION = '0.4.3'.freeze end