diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b945997e..df917866d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [v1.12.2](https://github.com/bensheldon/good_job/tree/v1.12.2) (2021-08-13) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v1.12.1...v1.12.2) + +**Fixed bugs:** + +- Fixes for race conditions in ActiveJob concurrency extension [\#326](https://github.com/bensheldon/good_job/pull/326) ([codyrobbins](https://github.com/codyrobbins)) + +**Merged pull requests:** + +- On gem release, add instructions to author a Github Release [\#324](https://github.com/bensheldon/good_job/pull/324) ([bensheldon](https://github.com/bensheldon)) + ## [v1.12.1](https://github.com/bensheldon/good_job/tree/v1.12.1) (2021-08-05) [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.12.0...v1.12.1) @@ -29,7 +41,7 @@ - Add the ability to schedule repeating / recurring / cron-like jobs [\#53](https://github.com/bensheldon/good_job/issues/53) - Add cron-like support for recurring/repeating jobs [\#297](https://github.com/bensheldon/good_job/pull/297) ([bensheldon](https://github.com/bensheldon)) -**Merged pull requests:** +**Fixed bugs:** - Place Dashboard shared view partials under `good_job` namespace [\#310](https://github.com/bensheldon/good_job/pull/310) ([bensheldon](https://github.com/bensheldon)) - Ensure Dashboard inline javascript has CSP nonce for strict Content-Security Policy [\#309](https://github.com/bensheldon/good_job/pull/309) ([bensheldon](https://github.com/bensheldon)) diff --git a/Gemfile.lock b/Gemfile.lock index 97e348815..603ab46b3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (1.12.1) + good_job (1.12.2) 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 ab668bc76..8f5049ce5 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 = '1.12.1' + VERSION = '1.12.2' end