diff --git a/CHANGELOG.md b/CHANGELOG.md index f001dd6..ada52ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # sidekiq_publisher +## 4.0.0 +- BREAKING: Enqueue directly to Redis unless in a transaction ([#74](https://github.com/ezcater/sidekiq_publisher/pull/74/)) + ## 3.0.0 - BREAKING: Drop support for Ruby `2.6` and `2.7` as they are [past end of life](https://endoflife.date/ruby) - BREAKING: Drop support for `ddtrace <= 1.8.0` diff --git a/lib/sidekiq_publisher/version.rb b/lib/sidekiq_publisher/version.rb index b941d80..eb7d4ae 100644 --- a/lib/sidekiq_publisher/version.rb +++ b/lib/sidekiq_publisher/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SidekiqPublisher - VERSION = "3.0.0" + VERSION = "4.0.0" end