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

bump version

This commit is contained in:
Mike Perham 2016-01-28 13:28:45 -08:00
parent 9a598a198f
commit ac6c23521e
2 changed files with 3 additions and 3 deletions

View file

@ -1,8 +1,9 @@
# Sidekiq Changes # Sidekiq Changes
HEAD 4.1.0
----------- -----------
- Tag quiet processes in the Web UI [#2757, jcarlson]
- Pass last exception to sidekiq\_retries\_exhausted block [#2787, Nowaker] - Pass last exception to sidekiq\_retries\_exhausted block [#2787, Nowaker]
```ruby ```ruby
class MyWorker class MyWorker
@ -11,7 +12,6 @@ class MyWorker
end end
end end
``` ```
- Tag quiet processes in the Web UI [#2757, jcarlson]
- Add native support for ActiveJob's `set(options)` method allowing - Add native support for ActiveJob's `set(options)` method allowing
you to override worker options dynamically. This should make it you to override worker options dynamically. This should make it
even easier to switch between ActiveJob and Sidekiq's native APIs [#2780] even easier to switch between ActiveJob and Sidekiq's native APIs [#2780]

View file

@ -1,3 +1,3 @@
module Sidekiq module Sidekiq
VERSION = "4.0.3" VERSION = "4.1.0"
end end