1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00

Bump to v0.2.0.

This commit is contained in:
Tobias Svensson 2013-03-08 16:52:06 +00:00
parent 200d09da22
commit fb1f921814
2 changed files with 14 additions and 2 deletions

View file

@ -1,3 +1,15 @@
0.2.0
-----
- Add class methods to get last and next scheduled occurrence.
- Pass last and next (current) occurrence to #perform, if desired.
This checks the method arity of #perform.
- Bump Sidekiq dependency to 2.8.0
- Fix incorrectly assigned Thread priority.
- Adjust clock sleep depending of execution time of the last tick.
- Don't log thread object ids.
- Issue a warning from the middleware if the clock thread died previously.
0.1.5
-----

View file

@ -5,10 +5,10 @@ module Sidetiq
MAJOR = 0
# Public: Sidetiq minor version number.
MINOR = 1
MINOR = 2
# Public: Sidetiq patch level.
PATCH = 5
PATCH = 0
# Public: String representation of the current Sidetiq version.
STRING = [MAJOR, MINOR, PATCH].compact.join('.')