From ae9adc568b9956b97a3824198405ad64c6ff1833 Mon Sep 17 00:00:00 2001 From: Ben Sheldon Date: Wed, 18 Aug 2021 13:28:17 -0700 Subject: [PATCH] Release good_job v1.13.1 --- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- lib/good_job/version.rb | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04a28c3f7..e991d85bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v1.13.1](https://github.com/bensheldon/good_job/tree/v1.13.1) (2021-08-18) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v1.13.0...v1.13.1) + +**Fixed bugs:** + +- Don’t attempt to enforce concurrency limits with other queue adapters [\#333](https://github.com/bensheldon/good_job/pull/333) ([codyrobbins](https://github.com/codyrobbins)) + ## [v1.13.0](https://github.com/bensheldon/good_job/tree/v1.13.0) (2021-08-18) [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.12.2...v1.13.0) diff --git a/Gemfile.lock b/Gemfile.lock index 201060feb..1cc3a8b7a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (1.13.0) + good_job (1.13.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 16d414473..db1bbcbe6 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 = '1.13.0' + VERSION = '1.13.1' end