diff --git a/CHANGELOG.md b/CHANGELOG.md index ede64798b..1aaaf339e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [v2.7.2](https://github.com/bensheldon/good_job/tree/v2.7.2) (2021-11-29) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.7.1...v2.7.2) + +**Implemented enhancements:** + +- Allow GoodJob global configuration accessors to also be set via Rails config hash [\#460](https://github.com/bensheldon/good_job/pull/460) ([bensheldon](https://github.com/bensheldon)) + +**Merged pull requests:** + +- Use `ActiveRecord::Relation::QueryAttribute` when setting up bindings for `exec_query` [\#461](https://github.com/bensheldon/good_job/pull/461) ([bensheldon](https://github.com/bensheldon)) +- Configure RSpec `config.example_status_persistence_file_path` [\#459](https://github.com/bensheldon/good_job/pull/459) ([bensheldon](https://github.com/bensheldon)) +- Defer async initialization until Rails fully initialized [\#454](https://github.com/bensheldon/good_job/pull/454) ([bensheldon](https://github.com/bensheldon)) + ## [v2.7.1](https://github.com/bensheldon/good_job/tree/v2.7.1) (2021-11-26) [Full Changelog](https://github.com/bensheldon/good_job/compare/v2.7.0...v2.7.1) diff --git a/Gemfile.lock b/Gemfile.lock index 94945984a..1f1e1638d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (2.7.1) + good_job (2.7.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 2e662e0b2..2b4118d6c 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.7.1' + VERSION = '2.7.2' end