From 7f792c0dae1f2402e3af2f3ff4cebec33504dedc Mon Sep 17 00:00:00 2001 From: Taketo Takashima Date: Wed, 19 Nov 2025 23:07:05 +0900 Subject: [PATCH] Bump to v1.1.0 --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++-- lib/whenever/version.rb | 2 +- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a4fd6be..80bf0d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,41 @@ ### unreleased -* Add note in README that cron is generated with the current user. [Raquel Queiroz] -* Set the environment for cron jobs based off the currently set RAILS_ENV env variable. If RAILS_ENV is not set it defaults to production +### 1.1.0 / Nov 21, 2025 + +* Splat whenever_roles when passing to roles https://github.com/javan/whenever/pull/777 + +* Update README.md https://github.com/javan/whenever/pull/785 + +* Clarify in README that tasks are run in parallel https://github.com/javan/whenever/pull/787 + +* Add note in README that cron is generated with the current user. [Raquel Queiroz] https://github.com/javan/whenever/pull/788 + +* Clarify options and warn about overwriting https://github.com/javan/whenever/pull/791 + +* Set the environment for cron jobs based off the currently set RAILS_ENV env variable. If RAILS_ENV is not set it defaults to production https://github.com/javan/whenever/pull/832 + +* [CHORE] DX: easify getting started contributing https://github.com/javan/whenever/pull/846 + +* CI: Replace travis-ci by Github-Actions https://github.com/javan/whenever/pull/847 + +* Added capability for updating cron without cmd https://github.com/javan/whenever/pull/515 + +* CI: Add Ruby 2.7-3.4 to the CI matrix https://github.com/javan/whenever/pull/858 + +* CI: Add dependabot config for bundler / github-actions https://github.com/javan/whenever/pull/862 + +* Handle crontab output to prevent SIGPIPE when running on CentOS Stream 10 https://github.com/javan/whenever/pull/861 + +* CI: Bump actions/checkout from 4 to 5 https://github.com/javan/whenever/pull/863 + +* Fix typo In test https://github.com/javan/whenever/pull/851 + +* Add changelog_uri to metadata to easily link from rubygems.org https://github.com/javan/whenever/pull/786 + +* Update gemspec format to match Bundler v3.x gemspec template https://github.com/javan/whenever/pull/864 + +* Add to require `whenever/version` https://github.com/javan/whenever/pull/865 ### 1.0.0 / Jun 13, 2019 diff --git a/lib/whenever/version.rb b/lib/whenever/version.rb index b6bbc618..b44f4065 100644 --- a/lib/whenever/version.rb +++ b/lib/whenever/version.rb @@ -1,3 +1,3 @@ module Whenever - VERSION = '1.0.0' + VERSION = '1.1.0' end