1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Version bump, release later

This commit is contained in:
Mike Perham 2014-08-31 20:14:22 -07:00
parent 626ece7ad8
commit 70cb0a9bb3
3 changed files with 11 additions and 1 deletions

View file

@ -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
-----------

View file

@ -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
-----------

View file

@ -1,3 +1,3 @@
module Sidekiq
VERSION = "3.2.2"
VERSION = "3.2.3"
end