diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 186f2e1..d6b1d06 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,3 +1,6 @@ +# 0.4.0 +- Use job's queue instead of hardcoded `default` [#9](https://github.com/JustinAiken/active_scheduler/pull/9) (Thanks @r3trofitted) + # 0.3.0 - Remove explicit active_support dependency (it's pulled in by activejob) diff --git a/README.markdown b/README.markdown index 15300ea..cda1ffd 100644 --- a/README.markdown +++ b/README.markdown @@ -83,6 +83,7 @@ simple_job: - @jeremycrosbie - @ximus - @jdguzman + - @r3trofitted ## License diff --git a/lib/active_scheduler/version.rb b/lib/active_scheduler/version.rb index 2d955f2..17336f8 100644 --- a/lib/active_scheduler/version.rb +++ b/lib/active_scheduler/version.rb @@ -1,3 +1,3 @@ module ActiveScheduler - VERSION = "0.3.0" + VERSION = "0.4.0" end