diff --git a/CHANGELOG.md b/CHANGELOG.md index 2111daa6a..fb4a88c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [v2.1.0](https://github.com/bensheldon/good_job/tree/v2.1.0) (2021-09-09) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.0.5...v2.1.0) + +**Implemented enhancements:** + +- Add `total_limit:` option to GoodJob::Concurrency to be inclusive of counting both enqueued and performing jobs [\#369](https://github.com/bensheldon/good_job/pull/369) ([bensheldon](https://github.com/bensheldon)) +- Add button to toggle all job params in Dashboard [\#365](https://github.com/bensheldon/good_job/pull/365) ([bensheldon](https://github.com/bensheldon)) + +**Closed issues:** + +- Cron-like jobs not always executed, possible reasons? [\#359](https://github.com/bensheldon/good_job/issues/359) + +**Merged pull requests:** + +- When shelling out in tests, send SIGKILL if process does not exit [\#371](https://github.com/bensheldon/good_job/pull/371) ([bensheldon](https://github.com/bensheldon)) +- Fix unlock key for Lockable\#with\_advisory\_lock [\#368](https://github.com/bensheldon/good_job/pull/368) ([bensheldon](https://github.com/bensheldon)) +- Have all tests use stubbed TestJob [\#364](https://github.com/bensheldon/good_job/pull/364) ([bensheldon](https://github.com/bensheldon)) + ## [v2.0.5](https://github.com/bensheldon/good_job/tree/v2.0.5) (2021-09-06) [Full Changelog](https://github.com/bensheldon/good_job/compare/v2.0.4...v2.0.5) diff --git a/Gemfile.lock b/Gemfile.lock index e21c020cf..5ca086e0a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (2.0.5) + good_job (2.1.0) activejob (>= 5.2.0) activerecord (>= 5.2.0) concurrent-ruby (>= 1.0.2) diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 2cb0cb5ee..a82018d42 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module GoodJob # GoodJob gem version. - VERSION = '2.0.5' + VERSION = '2.1.0' end