diff --git a/CHANGELOG.md b/CHANGELOG.md index 59c1fab45..ba07545f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [v1.7.1](https://github.com/bensheldon/good_job/tree/v1.7.1) (2021-01-27) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v1.7.0...v1.7.1) + +**Closed issues:** + +- Unexpected behavior with max\_threads = 1 [\#208](https://github.com/bensheldon/good_job/issues/208) + +**Merged pull requests:** + +- Scheduler should always push a new task on completion of previous task, regardless of available thread calculation [\#209](https://github.com/bensheldon/good_job/pull/209) ([bensheldon](https://github.com/bensheldon)) +- Fix equality typo in development.rb of test\_app [\#207](https://github.com/bensheldon/good_job/pull/207) ([reczy](https://github.com/reczy)) + ## [v1.7.0](https://github.com/bensheldon/good_job/tree/v1.7.0) (2021-01-25) [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.6.0...v1.7.0) @@ -101,6 +114,7 @@ - Ensure advisory lock CTE is MATERIALIZED on Postgres v12+ [\#179](https://github.com/bensheldon/good_job/pull/179) ([bensheldon](https://github.com/bensheldon)) - Ensure that deleted jobs are unlocked [\#178](https://github.com/bensheldon/good_job/pull/178) ([bensheldon](https://github.com/bensheldon)) +- Fix job ordering for Rails 6.1 [\#174](https://github.com/bensheldon/good_job/pull/174) ([morgoth](https://github.com/morgoth)) **Closed issues:** @@ -115,10 +129,6 @@ [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.3.3...v1.3.4) -**Fixed bugs:** - -- Fix job ordering for Rails 6.1 [\#174](https://github.com/bensheldon/good_job/pull/174) ([morgoth](https://github.com/morgoth)) - ## [v1.3.3](https://github.com/bensheldon/good_job/tree/v1.3.3) (2020-12-01) [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.3.2...v1.3.3) diff --git a/Gemfile.lock b/Gemfile.lock index f493e30eb..9d00a9697 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_job (1.7.0) + good_job (1.7.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 fc27668f7..db84f0aaa 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -1,4 +1,4 @@ module GoodJob # GoodJob gem version. - VERSION = '1.7.0'.freeze + VERSION = '1.7.1'.freeze end