From 329dfad0a7ba22cb7ce049c0e4f6ec03f81c9783 Mon Sep 17 00:00:00 2001 From: Ben Sheldon Date: Tue, 24 Aug 2021 12:13:11 -0700 Subject: [PATCH] Release good_job v2.0.1 --- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 2 +- lib/good_job/version.rb | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c0cc936b..1db4f0ae9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [v2.0.1](https://github.com/bensheldon/good_job/tree/v2.0.1) (2021-08-24) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.0.0...v2.0.1) + +**Closed issues:** + +- Is there any value in seeing a backtrace for ConcurrencyExceededError? [\#347](https://github.com/bensheldon/good_job/issues/347) +- Release GoodJob 2.0 [\#307](https://github.com/bensheldon/good_job/issues/307) +- Unhandled ActiveJob errors should trigger GoodJob.on\_thread\_error [\#247](https://github.com/bensheldon/good_job/issues/247) + +**Merged pull requests:** + +- Suppress backtrace of ConcurrencyExceededError [\#348](https://github.com/bensheldon/good_job/pull/348) ([reczy](https://github.com/reczy)) + ## [v2.0.0](https://github.com/bensheldon/good_job/tree/v2.0.0) (2021-08-24) [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.99.0...v2.0.0) diff --git a/Gemfile.lock b/Gemfile.lock index 811a60955..c63308289 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (2.0.0) + good_job (2.0.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 c20bd7839..e7c35406b 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.0.0' + VERSION = '2.0.1' end