diff --git a/Changes.md b/Changes.md index a9c3cfe7..c830e8ef 100644 --- a/Changes.md +++ b/Changes.md @@ -2,6 +2,12 @@ [Sidekiq Changes](https://github.com/mperham/sidekiq/blob/main/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/main/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/main/Ent-Changes.md) +7.0.1 +---------- + +- Allow an embedding process to reuse its own heartbeat thread +- Update zh-cn localization + 7.0.0 ---------- diff --git a/Ent-Changes.md b/Ent-Changes.md index c8267a43..d5e113f9 100644 --- a/Ent-Changes.md +++ b/Ent-Changes.md @@ -4,7 +4,7 @@ Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy. -HEAD +7.0.1 --------- - Fix spurious ReadTimeoutError in concurrent rate limiter [#5611] diff --git a/Pro-Changes.md b/Pro-Changes.md index e7d8cddf..1d7b9c48 100644 --- a/Pro-Changes.md +++ b/Pro-Changes.md @@ -4,10 +4,10 @@ Please see [sidekiq.org](https://sidekiq.org/) for more details and how to buy. -HEAD +7.0.1 --------- -- Fix eager connection to Redis [#5606] +- Fix eager connection to Redis when activating reliable_push [#5606] 7.0.0 --------- diff --git a/lib/sidekiq/version.rb b/lib/sidekiq/version.rb index 90ae1ea1..2d042840 100644 --- a/lib/sidekiq/version.rb +++ b/lib/sidekiq/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module Sidekiq - VERSION = "7.0.0" + VERSION = "7.0.1" MAJOR = 7 end