diff --git a/CHANGELOG.md b/CHANGELOG.md index a14a007e4..4063b2841 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,38 @@ # Changelog +## [v3.7.0](https://github.com/bensheldon/good_job/tree/v3.7.0) (2022-12-10) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.6.2...v3.7.0) + +**Implemented enhancements:** + +- Add GoodJob version to start banner [\#766](https://github.com/bensheldon/good_job/pull/766) ([zarqman](https://github.com/zarqman)) + +**Fixed bugs:** + +- Always preserve job records created by cron [\#767](https://github.com/bensheldon/good_job/pull/767) ([bensheldon](https://github.com/bensheldon)) + +**Merged pull requests:** + +- Bump nokogiri from 1.13.9 to 1.13.10 [\#765](https://github.com/bensheldon/good_job/pull/765) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Remove JRuby 9.2 from testing matrix [\#763](https://github.com/bensheldon/good_job/pull/763) ([bensheldon](https://github.com/bensheldon)) +- Bump actions/cache from 1 to 3 [\#762](https://github.com/bensheldon/good_job/pull/762) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Bump actions/upload-artifact from 2 to 3 [\#761](https://github.com/bensheldon/good_job/pull/761) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Bump actions/add-to-project from 0.3.0 to 0.4.0 [\#759](https://github.com/bensheldon/good_job/pull/759) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Bump alex-page/github-project-automation-plus from 9a05133789dbc96bd560ec84223a0ad49253d342 to 1f8873e97e3c8f58161a323b7c568c1f623a1c4d [\#758](https://github.com/bensheldon/good_job/pull/758) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Bump selenium-webdriver from 4.6.1 to 4.7.1 [\#757](https://github.com/bensheldon/good_job/pull/757) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Add explicit ruby version in Gemfile for Heroku demo [\#755](https://github.com/bensheldon/good_job/pull/755) ([bensheldon](https://github.com/bensheldon)) + ## [v3.6.2](https://github.com/bensheldon/good_job/tree/v3.6.2) (2022-12-04) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.6.1...v3.6.2) -**Merged pull requests:** +**Fixed bugs:** - Redirect to Jobs path after destroy [\#754](https://github.com/bensheldon/good_job/pull/754) ([BilalBudhani](https://github.com/BilalBudhani)) + +**Merged pull requests:** + - Bump pg from 1.4.4 to 1.4.5 [\#751](https://github.com/bensheldon/good_job/pull/751) ([dependabot[bot]](https://github.com/apps/dependabot)) ## [v3.6.1](https://github.com/bensheldon/good_job/tree/v3.6.1) (2022-11-30) diff --git a/Gemfile.lock b/Gemfile.lock index 207d99e69..0029eeb7a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.6.2) + good_job (3.7.0) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) @@ -168,7 +168,7 @@ GEM ffi (1.15.5-java) fiber-local (1.0.0) foreman (0.87.2) - fugit (1.7.2) + fugit (1.8.0) et-orbi (~> 1, >= 1.2.7) raabro (~> 1.4) gem-release (2.2.2) diff --git a/checksums/good_job-3.7.0.gem.sha256 b/checksums/good_job-3.7.0.gem.sha256 new file mode 100644 index 000000000..514985f46 --- /dev/null +++ b/checksums/good_job-3.7.0.gem.sha256 @@ -0,0 +1 @@ +c0415c4d23781ab1abd614fd8e16a13bdf9f944495420d7cb759dceb0863391f diff --git a/checksums/good_job-3.7.0.gem.sha512 b/checksums/good_job-3.7.0.gem.sha512 new file mode 100644 index 000000000..1cccf064c --- /dev/null +++ b/checksums/good_job-3.7.0.gem.sha512 @@ -0,0 +1 @@ +1dcab399d9737b69faca6ccb4a7e66e4d5dfa120e52431760eb31d65f1d9e946f3dfa526f18cc6b0e7e910c5ba2c61099590ccfe068c22799d7b19cb92ceed11 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 460b471bb..e8da58662 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 = '3.6.2' + VERSION = '3.7.0' end