From aa7b3b089d8bbebf9d0aceccb1cff0508e2be9ac Mon Sep 17 00:00:00 2001 From: Alexey Zapparov Date: Sun, 17 Nov 2024 21:34:46 +0100 Subject: [PATCH] Release v1.5.0 (#197) --- CHANGES.md | 12 +++++++++++- lib/sidekiq/throttled/version.rb | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 276aa16..d1e23d2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.5.0] - 2024-11-17 + +### Added + +- Allow configuring whether throttled jobs are put back on the queue immediately + or scheduled for the future + [#150](https://github.com/ixti/sidekiq-throttled/pull/150). + ### Changed - Change default cooldown period to `1.0` (was `2.0`), @@ -19,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Drop Sidekiq < 7 support - Remove deprecated `Sidekiq::Throttled.setup!` + ## [1.4.0] - 2024-04-07 ### Fixed @@ -124,7 +133,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Remove queue exclusion from fetcher pon throttled job -[unreleased]: https://github.com/ixti/sidekiq-throttled/compare/v1.4.0...main +[unreleased]: https://github.com/ixti/sidekiq-throttled/compare/v1.5.0...main +[1.5.0]: https://github.com/ixti/sidekiq-throttled/compare/v1.4.0...v1.5.0 [1.4.0]: https://github.com/ixti/sidekiq-throttled/compare/v1.3.0...v1.4.0 [1.3.0]: https://github.com/ixti/sidekiq-throttled/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/ixti/sidekiq-throttled/compare/v1.1.0...v1.2.0 diff --git a/lib/sidekiq/throttled/version.rb b/lib/sidekiq/throttled/version.rb index 8500452..4635084 100644 --- a/lib/sidekiq/throttled/version.rb +++ b/lib/sidekiq/throttled/version.rb @@ -3,6 +3,6 @@ module Sidekiq module Throttled # Gem version - VERSION = "1.4.0" + VERSION = "1.5.0" end end