From 6c7ff2f7b1d68af3a565bf50984b9cb2b4dd3314 Mon Sep 17 00:00:00 2001 From: Dzmitry Plashchynski Date: Wed, 18 Dec 2024 14:58:42 +0300 Subject: [PATCH] Bump 2.1.0 --- .gitignore | 3 +++ Changes.md | 4 ++++ Gemfile.lock | 3 ++- README.md | 18 ++++++++++++++++-- lib/crono/version.rb | 2 +- 5 files changed, 26 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index a5147fe..15d2750 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,6 @@ log/*.log .byebug_history spec/internal + +# macOS stuff +.DS_Store diff --git a/Changes.md b/Changes.md index f59994e..183ebc3 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,7 @@ +2.1.0 +----------- +- Add Rails 7.2 support (thanks to @janko) + 2.0.1 ----------- - Fix a job argument error diff --git a/Gemfile.lock b/Gemfile.lock index 9e8cc68..3fd2b1e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - crono (2.0.1) + crono (2.1.0) rails (>= 5.2.8) GEM @@ -234,6 +234,7 @@ GEM PLATFORMS arm64-darwin-21 arm64-darwin-23 + arm64-darwin-24 x86_64-darwin-21 x86_64-darwin-22 x86_64-linux diff --git a/README.md b/README.md index 89b3b57..45da496 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ Usage: crono [options] [start|stop|restart|run] -e, --environment ENV Application environment (Default: development) ``` -#### Run as a daemon +### Run as a daemon To run Crono as a daemon, please add to your Gemfile: @@ -194,7 +194,7 @@ Rails.application.routes.draw do Access management and other questions described in the [wiki](https://github.com/plashchynski/crono/wiki/Web-UI). -#### Known issues +## Known issues For Rails 5, in case of the errors: ``` @@ -207,6 +207,20 @@ See the related issue [#52](https://github.com/plashchynski/crono/issues/52) Use the `capistrano-crono` gem ([github](https://github.com/plashchynski/capistrano-crono/)). +## Development + +### Running tests + +To run the tests, you need to have a database. You can use the default SQLite database: + + bundle exec rspec + +### Publishing + +To publish a new version, you need to update the version number in `lib/crono/version.rb` and then run: + + bundle exec rake release + ## Support diff --git a/lib/crono/version.rb b/lib/crono/version.rb index 6bfa895..8523b4e 100644 --- a/lib/crono/version.rb +++ b/lib/crono/version.rb @@ -1,3 +1,3 @@ module Crono - VERSION = '2.0.1' + VERSION = '2.1.0' end