diff --git a/CHANGELOG.md b/CHANGELOG.md index d34c8a506..380704be1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v2.3.1](https://github.com/bensheldon/good_job/tree/v2.3.1) (2021-09-30) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.3.0...v2.3.1) + +**Merged pull requests:** + +- Log Cleanup thread tests, introduce "Slow" ExampleJob type, refactor ExampleJob types, run cron and log Postgres warnings in GoodJob Development harness [\#390](https://github.com/bensheldon/good_job/pull/390) ([bensheldon](https://github.com/bensheldon)) +- Wrap Scheduler task execution with Rails `reloader` instead of `executor` to avoid database connection changing during code reload [\#389](https://github.com/bensheldon/good_job/pull/389) ([bensheldon](https://github.com/bensheldon)) + ## [v2.3.0](https://github.com/bensheldon/good_job/tree/v2.3.0) (2021-09-25) [Full Changelog](https://github.com/bensheldon/good_job/compare/v2.2.0...v2.3.0) diff --git a/Gemfile.lock b/Gemfile.lock index f109be719..396850bc8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (2.3.0) + good_job (2.3.1) 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 15874b9ed..1df982372 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.3.0' + VERSION = '2.3.1' end