From d6451203e535c2e3e1c87b9213cf773aac9c4ad7 Mon Sep 17 00:00:00 2001 From: Justin Aiken <60tonangel@gmail.com> Date: Tue, 29 Mar 2016 11:32:27 -0600 Subject: [PATCH] Version bump for latest change --- CHANGELOG.markdown | 5 +++++ README.markdown | 2 ++ lib/active_scheduler/version.rb | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.markdown diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown new file mode 100644 index 0000000..54e3b27 --- /dev/null +++ b/CHANGELOG.markdown @@ -0,0 +1,5 @@ +# 0.1.0 + +- Only wrap jobs that are descendants of `ActiveJob::Base` [#3](https://github.com/JustinAiken/active_scheduler/pull/3) + +# 0.0.3 diff --git a/README.markdown b/README.markdown index 955f7de..a964f66 100644 --- a/README.markdown +++ b/README.markdown @@ -55,6 +55,8 @@ ThisIsTheClass: description: "Will call the ThisIsTheClass class" ``` +Only classes that are descended from `ActiveJob::Base` will be wrapped + ## Credits - Written by [@JustinAiken](https://www.github.com/JustinAiken) diff --git a/lib/active_scheduler/version.rb b/lib/active_scheduler/version.rb index 7aa9bb3..5d39dda 100644 --- a/lib/active_scheduler/version.rb +++ b/lib/active_scheduler/version.rb @@ -1,3 +1,3 @@ module ActiveScheduler - VERSION = "0.0.3" + VERSION = "0.1.0" end