From 70cb0a9bb3f6a4b2cc87fc7a24995f3d06980ffe Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Sun, 31 Aug 2014 20:14:22 -0700 Subject: [PATCH] Version bump, release later --- Changes.md | 2 ++ Pro-Changes.md | 8 ++++++++ lib/sidekiq/version.rb | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Changes.md b/Changes.md index e2379b1e..8a3819f0 100644 --- a/Changes.md +++ b/Changes.md @@ -5,6 +5,8 @@ - Add queues list for each process to the Busy page. [davetoxa, #1897] - Fix for crash caused by empty config file. [jordan0day, #1901] - Add Rails Worker generator, `rails g sidekiq:worker User` will create `app/workers/user_worker.rb`. [seuros, #1909] +- Fix Web UI rendering with huge job arguments [jhass, #1918] +- Minor refactoring of Sidekiq::Client internals, for Sidekiq Pro. [#1919] 3.2.2 ----------- diff --git a/Pro-Changes.md b/Pro-Changes.md index db68a037..156326c9 100644 --- a/Pro-Changes.md +++ b/Pro-Changes.md @@ -3,6 +3,14 @@ Sidekiq Pro Changelog Please see [http://sidekiq.org/pro](http://sidekiq.org/pro) for more details and how to buy. +1.8.0 +----------- + +- Fix long standing Batch race condition where Batches can complete + before they have been fully defined or only half-defined. Requires + Sidekiq 3.2.3. [#1919] + + 1.7.5 ----------- diff --git a/lib/sidekiq/version.rb b/lib/sidekiq/version.rb index f234d0ee..da0552fb 100644 --- a/lib/sidekiq/version.rb +++ b/lib/sidekiq/version.rb @@ -1,3 +1,3 @@ module Sidekiq - VERSION = "3.2.2" + VERSION = "3.2.3" end