diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 54e3b27..cf4c50c 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,3 +1,7 @@ +# 0.2.0 + +- Deprecate `arguments` in favor of `args` [#5](https://github.com/JustinAiken/active_scheduler/pull/5) + # 0.1.0 - Only wrap jobs that are descendants of `ActiveJob::Base` [#3](https://github.com/JustinAiken/active_scheduler/pull/3) diff --git a/lib/active_scheduler/version.rb b/lib/active_scheduler/version.rb index 5d39dda..680f049 100644 --- a/lib/active_scheduler/version.rb +++ b/lib/active_scheduler/version.rb @@ -1,3 +1,3 @@ module ActiveScheduler - VERSION = "0.1.0" + VERSION = "0.2.0" end