diff --git a/CHANGELOG.md b/CHANGELOG.md index 51f17deb1..52b51e7e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [v3.7.2](https://github.com/bensheldon/good_job/tree/v3.7.2) (2022-12-12) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.7.1...v3.7.2) + +**Closed issues:** + +- Unable to discard failed jobs which crashed with `ActiveJob::DeserializationError` [\#770](https://github.com/bensheldon/good_job/issues/770) + +**Merged pull requests:** + +- Ignore ActiveJob::DeserializationError when discarding jobs [\#771](https://github.com/bensheldon/good_job/pull/771) ([nickcampbell18](https://github.com/nickcampbell18)) +- Bump rubocop from 1.39.0 to 1.40.0 [\#769](https://github.com/bensheldon/good_job/pull/769) ([dependabot[bot]](https://github.com/apps/dependabot)) + ## [v3.7.1](https://github.com/bensheldon/good_job/tree/v3.7.1) (2022-12-12) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.7.0...v3.7.1) diff --git a/Gemfile.lock b/Gemfile.lock index 0be6026dd..b2cd2dd7b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.7.1) + good_job (3.7.2) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.7.2.gem.sha256 b/checksums/good_job-3.7.2.gem.sha256 new file mode 100644 index 000000000..667578447 --- /dev/null +++ b/checksums/good_job-3.7.2.gem.sha256 @@ -0,0 +1 @@ +6bbdbcd5008d74cf196a8790b6c952cd791f32a2ad60e1c8aa5311a1a2df2d01 diff --git a/checksums/good_job-3.7.2.gem.sha512 b/checksums/good_job-3.7.2.gem.sha512 new file mode 100644 index 000000000..add767b1a --- /dev/null +++ b/checksums/good_job-3.7.2.gem.sha512 @@ -0,0 +1 @@ +8f9f93624e623d36ad9d3acfb5a83f3dbe5e7c269a9970a87787f7eae6cdd7ba6908c864b987a09a4ef9b11ad5ccaca4df52e1fa2e872ae5b0e6b8be5332c3d6 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 82bf2fa8a..962b859fc 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.7.1' + VERSION = '3.7.2' end