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:
parent
200d09da22
commit
fb1f921814
2 changed files with 14 additions and 2 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -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
|
0.1.5
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,10 @@ module Sidetiq
|
||||||
MAJOR = 0
|
MAJOR = 0
|
||||||
|
|
||||||
# Public: Sidetiq minor version number.
|
# Public: Sidetiq minor version number.
|
||||||
MINOR = 1
|
MINOR = 2
|
||||||
|
|
||||||
# Public: Sidetiq patch level.
|
# Public: Sidetiq patch level.
|
||||||
PATCH = 5
|
PATCH = 0
|
||||||
|
|
||||||
# Public: String representation of the current Sidetiq version.
|
# Public: String representation of the current Sidetiq version.
|
||||||
STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
||||||
|
|
Loading…
Reference in a new issue