Bump to v0.4.0.rc3.

This commit is contained in:
Tobias Svensson 2013-09-17 17:03:26 +01:00
parent f5c1b91587
commit 64afc52b91
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
0.4.0
-----
- Schedules are now stored on the workers directly instead of in a
pseudo-global, mutable Hash.
- Clock now start looping automatically if `Sidekiq.server?` returns true.
- Show job history in web extension.
- Integrate with Sidekiq's exception handling/reporting in critical parts.

View File

@ -11,7 +11,7 @@ module Sidetiq
PATCH = 0
# Public: Sidetiq version suffix.
SUFFIX = 'rc2'
SUFFIX = 'rc3'
# Public: String representation of the current Sidetiq version.
STRING = [MAJOR, MINOR, PATCH, SUFFIX].compact.join('.')