From cf654b5a9be6c8995d909c550eae7834d4614cb2 Mon Sep 17 00:00:00 2001 From: Dmitriy Ivliev <3938172+moofkit@users.noreply.github.com> Date: Mon, 3 Jun 2024 10:16:55 +0300 Subject: [PATCH] release 0.4.0 --- CHANGELOG.md | 9 +++++++-- lib/sidekiq/rescue/version.rb | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6142594..58a589f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +## [0.4.0] - 2024-06-03 +- Add support for jitter configuration [#4](https://github.com/moofkit/sidekiq-rescue/pull/4) +- Changes the strategy for retry delay. Now it's calculated using the formula `delay + delay * jitter * rand` + ## [0.3.1] - 2024-05-30 - Fix bug with inheritance of DSL options @@ -7,7 +11,7 @@ ## [0.3.0] - 2024-05-30 - Fix issue with RSpec matcher when job is not rescueable -- Add support for multiple invocations of the DSL #3 +- Add support for multiple invocations of the DSL - Update documentation with new features ## [0.2.1] - 2024-02-27 @@ -30,7 +34,8 @@ - Add documentation - Add CI -[Unreleased]: https://github.com/moofkit/sidekiq-rescue/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/moofkit/sidekiq-rescue/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/moofkit/sidekiq-rescue/releases/tag/v0.4.0 [0.3.1]: https://github.com/moofkit/sidekiq-rescue/releases/tag/v0.3.1 [0.3.0]: https://github.com/moofkit/sidekiq-rescue/releases/tag/v0.3.0 [0.2.1]: https://github.com/moofkit/sidekiq-rescue/releases/tag/v0.2.1 diff --git a/lib/sidekiq/rescue/version.rb b/lib/sidekiq/rescue/version.rb index 2e27c10..8c3ff99 100644 --- a/lib/sidekiq/rescue/version.rb +++ b/lib/sidekiq/rescue/version.rb @@ -2,6 +2,6 @@ module Sidekiq module Rescue - VERSION = "0.3.1" + VERSION = "0.4.0" end end