From c57bff2f27d17c2d46c8a9b1fc7baf49eef41894 Mon Sep 17 00:00:00 2001 From: Justin Aiken <60tonangel@gmail.com> Date: Tue, 2 Aug 2016 17:28:57 -0600 Subject: [PATCH] Release version 0.3.0... - Bump version - Update README with more credits - Update changelog --- CHANGELOG.markdown | 12 ++++++++---- README.markdown | 6 +++++- lib/active_scheduler/version.rb | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 21239fb..8f1d4f8 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,13 +1,17 @@ -# Next +# 0.3.0 -- :boom: :gem:active_support:gem: dependency +- :boom: active_support dependency +- Updated testing matrix for more rubies 💎💎💎 +- Support named args [#6](https://github.com/JustinAiken/active_scheduler/pull/6) (Thanks @jdguzman) # 0.2.0 -- Deprecate `arguments` in favor of `args` [#5](https://github.com/JustinAiken/active_scheduler/pull/5) +- Deprecate `arguments` in favor of `args` [#5](https://github.com/JustinAiken/active_scheduler/pull/5) (Thanks @ximus) # 0.1.0 -- Only wrap jobs that are descendants of `ActiveJob::Base` [#3](https://github.com/JustinAiken/active_scheduler/pull/3) +- Only wrap jobs that are descendants of `ActiveJob::Base` [#3](https://github.com/JustinAiken/active_scheduler/pull/3) (Thanks @ximus) # 0.0.3 + +- Use schedule name as class name if unspecified [#1](https://github.com/JustinAiken/active_scheduler/pull/1) (Thanks @jeremycrosbie) diff --git a/README.markdown b/README.markdown index 91c8d17..15300ea 100644 --- a/README.markdown +++ b/README.markdown @@ -78,7 +78,11 @@ simple_job: - Written by [@JustinAiken](https://www.github.com/JustinAiken) - Wrapper class idea by [@ryanwjackson](https://www.github.com/ryanwjackson) -- Special thanks to [Rocketmade](http://www.rocketmade.com/) for development resources. +- Special thanks to [Rocketmade](https://www.rocketmade.com/) for development resources. +- Other Contributors: + - @jeremycrosbie + - @ximus + - @jdguzman ## License diff --git a/lib/active_scheduler/version.rb b/lib/active_scheduler/version.rb index 680f049..2d955f2 100644 --- a/lib/active_scheduler/version.rb +++ b/lib/active_scheduler/version.rb @@ -1,3 +1,3 @@ module ActiveScheduler - VERSION = "0.2.0" + VERSION = "0.3.0" end