diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fdbcea0..64ad4c03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [v4.0.3](https://github.com/bensheldon/good_job/tree/v4.0.3) (2024-07-10) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v4.0.2...v4.0.3) + +**Fixed bugs:** + +- Only set duration attribute to interval on Rails 6.1 [\#1412](https://github.com/bensheldon/good_job/pull/1412) ([bdewater-thatch](https://github.com/bdewater-thatch)) + +**Closed issues:** + +- GoodJob error: TypeError: can't cast ActiveSupport::Duration \(on v4.0.0\) [\#1413](https://github.com/bensheldon/good_job/issues/1413) +- Question: is it possible to clean a set of scheduled jobs \(by class name\) from console? [\#1410](https://github.com/bensheldon/good_job/issues/1410) +- "Couldn't find GoodJob::BatchRecord" error [\#1387](https://github.com/bensheldon/good_job/issues/1387) +- Empty alerts "\[\]"? [\#1372](https://github.com/bensheldon/good_job/issues/1372) +- Release GoodJob 4.0 [\#764](https://github.com/bensheldon/good_job/issues/764) + +**Merged pull requests:** + +- Add Active Support load hooks for Job and \(Discrete\)Execution; move all outside class definition bodies [\#1414](https://github.com/bensheldon/good_job/pull/1414) ([bensheldon](https://github.com/bensheldon)) + ## [v4.0.2](https://github.com/bensheldon/good_job/tree/v4.0.2) (2024-07-08) [Full Changelog](https://github.com/bensheldon/good_job/compare/v4.0.1...v4.0.2) diff --git a/Gemfile.lock b/Gemfile.lock index 14e7e496..345d2fae 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_job (4.0.2) + good_job (4.0.3) activejob (>= 6.1.0) activerecord (>= 6.1.0) concurrent-ruby (>= 1.3.1) diff --git a/checksums/good_job-4.0.3.gem.sha256 b/checksums/good_job-4.0.3.gem.sha256 new file mode 100644 index 00000000..3c944c1a --- /dev/null +++ b/checksums/good_job-4.0.3.gem.sha256 @@ -0,0 +1 @@ +51b53173d275a867e6eb833d1728629c6041659f9705dd1beeaa2323580e02f8 diff --git a/checksums/good_job-4.0.3.gem.sha512 b/checksums/good_job-4.0.3.gem.sha512 new file mode 100644 index 00000000..4e13eb98 --- /dev/null +++ b/checksums/good_job-4.0.3.gem.sha512 @@ -0,0 +1 @@ +99e998c84ba895cd70caab70b80de47cf63fc3a08fb6753b5cd23dc6cf14b7df53df868d6cb754219ec4607f1ff2b044fa94c27e8c20e8d5a844a40382f2cd9a diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index e701cf70..f1d474a8 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -2,7 +2,7 @@ module GoodJob # GoodJob gem version. - VERSION = '4.0.2' + VERSION = '4.0.3' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)