diff --git a/CHANGELOG.md b/CHANGELOG.md index b73dd4ad..7b50d9cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 4.6.1 + +- Fixes warning message to refer to correct Sidekiq gem dependency name ([#243](https://github.com/alphagov/govuk_app_config/pull/243)). + # 4.6.0 - Add a warning for apps using GovukError with Sidekiq that don't have sentry-sidekiq installed ([#241](https://github.com/alphagov/govuk_app_config/pull/241)). diff --git a/lib/govuk_app_config/govuk_error.rb b/lib/govuk_app_config/govuk_error.rb index d3d579c1..e1d98076 100644 --- a/lib/govuk_app_config/govuk_error.rb +++ b/lib/govuk_app_config/govuk_error.rb @@ -35,7 +35,7 @@ def self.configure raise GovukError::AlreadyInitialised if is_configured? if defined?(Sidekiq) && !defined?(Sentry::Sidekiq) - warn "Warning: GovukError is not configured to track Sidekiq errors, install the sidekiq-sentry gem to track them." + warn "Warning: GovukError is not configured to track Sidekiq errors, install the sentry-sidekiq gem to track them." end Sentry.init do |sentry_config| diff --git a/lib/govuk_app_config/version.rb b/lib/govuk_app_config/version.rb index 69dd1f52..3801ad59 100644 --- a/lib/govuk_app_config/version.rb +++ b/lib/govuk_app_config/version.rb @@ -1,3 +1,3 @@ module GovukAppConfig - VERSION = "4.6.0".freeze + VERSION = "4.6.1".freeze end