diff --git a/Changes.md b/Changes.md index 8be197d..597d112 100644 --- a/Changes.md +++ b/Changes.md @@ -1,24 +1,35 @@ -0.5.0 +0.8.0 ----------- -- Initial release! +- Added `on` (day of week) option to cronotab.rb semantic +- Added job health check and job health indicator to the Web UI -0.5.1 + +0.7.0 ----------- -- Added -e/--environment ENV option to set the daemon rails environment. +- Added simple Web UI + + +0.6.1 +----------- + +- Persist job state to your database. + 0.5.2 ----------- - Fix: Scheduled time now related to the last performing time. -0.6.1 + +0.5.1 ----------- -- Persist job state to your database. +- Added -e/--environment ENV option to set the daemon rails environment. -0.7.0 + +0.5.0 ----------- -- Added simple Web UI +- Initial release! diff --git a/Gemfile.lock b/Gemfile.lock index 67661ee..8ec2612 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - crono (0.7.0) + crono (0.8.0) activejob (~> 4.0) activerecord (~> 4.0) activesupport (~> 4.0) @@ -66,7 +66,7 @@ GEM tilt (~> 1.3, >= 1.3.4) slop (3.6.0) sqlite3 (1.3.10) - thread_safe (0.3.4) + thread_safe (0.3.5) tilt (1.4.1) timecop (0.7.3) tzinfo (1.2.2) diff --git a/lib/crono/version.rb b/lib/crono/version.rb index 9fc9803..e5b535c 100644 --- a/lib/crono/version.rb +++ b/lib/crono/version.rb @@ -1,3 +1,3 @@ module Crono - VERSION = '0.7.0' + VERSION = '0.8.0' end