diff --git a/CHANGELOG.md b/CHANGELOG.md index d0c7426..4673b6b 100644 --- a/CHANGELOG.md +++ b/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 ----- diff --git a/lib/sidetiq/version.rb b/lib/sidetiq/version.rb index bf95aab..d650f5b 100644 --- a/lib/sidetiq/version.rb +++ b/lib/sidetiq/version.rb @@ -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('.')