From 6f8af2066e93abe2c7003f1279ba7eec07728704 Mon Sep 17 00:00:00 2001 From: Justin Aiken <60tonangel@gmail.com> Date: Fri, 7 Aug 2020 10:15:11 -0600 Subject: [PATCH] Version 0.7.0 --- CHANGELOG.markdown | 4 ++++ README.markdown | 2 +- lib/active_scheduler/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 054c95b..ab09970 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,3 +1,7 @@ +# 0.7.0 +- Remove deprecated Rubyforge reference [#19](https://github.com/JustinAiken/active_scheduler/pull/19) (Thanks @kensentor) +- Implement ActiveScheduler::ResqueWrapper.scheduled [#17](https://github.com/JustinAiken/active_scheduler/pull/17) (Thanks @AMHOL) + # 0.6.0 - Add `persist` option [#15](https://github.com/JustinAiken/active_scheduler/pull/15) (Thanks @SpiffyStores) diff --git a/README.markdown b/README.markdown index c02d7f3..633e9dd 100644 --- a/README.markdown +++ b/README.markdown @@ -11,7 +11,7 @@ Currently only Resque is supported, but pull requests to add other queues (sidek - Ruby 2.0+ - ActiveJob - 4.2 is tested and used in production - - 5.0 is tested against CI, but I haven't tried it in production. + - 5.0-6.0 is tested against CI, but I haven't tried it in production. - Resque - Resque Scheduler diff --git a/lib/active_scheduler/version.rb b/lib/active_scheduler/version.rb index 9e160aa..da2f1eb 100644 --- a/lib/active_scheduler/version.rb +++ b/lib/active_scheduler/version.rb @@ -1,3 +1,3 @@ module ActiveScheduler - VERSION = "0.6.0" + VERSION = "0.7.0" end