diff --git a/Changes.md b/Changes.md index 7443e2a..4be5d6e 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,16 @@ +1.2.0 +----------- + +- Test with Ruby 2.4/2.5/2.6/2.7 +- Test with Rails 5.x/6.x +- Switch to Zeitwerk to load gem files +- Add magic comment `# frozen_string_literal: true` +- Add binstubs to ease development +- Improve process name +- Improve systemd support +- Add Rubocop + + 1.1.0 ----------- - Rails 3 and old Rubies are not supported anymore, sorry rails 3 guys... diff --git a/lib/crono/version.rb b/lib/crono/version.rb index a1e2d29..8cc7d89 100644 --- a/lib/crono/version.rb +++ b/lib/crono/version.rb @@ -8,8 +8,8 @@ def self.gem_version module VERSION MAJOR = 1 - MINOR = 1 - TINY = 2 + MINOR = 2 + TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')