From 98589e91539bde4e52b772357b71f3ee213f538f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20Oko=C5=84ski?= Date: Mon, 19 Sep 2022 09:19:19 +0200 Subject: [PATCH] Bump version to 2.1.0 --- CHANGELOG.md | 17 ++++++++++++----- gush.gemspec | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90d84a8..28e6d0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 2.1.0 + +### Added + +- Allow RedisMutex’s locking duration and polling interval to be customizable, thanks to @thukim! [See pull request](https://github.com/chaps-io/gush/pull/74) +- Support for Rails 7.0 and Ruby 3.0-3.1, thanks to @joshRpowell and @kzkn! + ## 2.0.1 ### Fixed @@ -13,31 +20,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## 2.0.0 -## Changed +### Changed - *[BREAKING]* Store gush jobs on redis hash instead of plain keys - this improves performance when retrieving keys (Thanks to @Saicheg! [See pull request](https://github.com/chaps-io/gush/pull/56)) -## Added +### Added - Allow setting queue for each job via `:queue` option in `run` method (Thanks to @devilankur18! [See pull request](https://github.com/chaps-io/gush/pull/58)) ## 1.1.1 - 2018-06-09 -## Changed +### Changed - Relax dependency on ActiveSupport to work with 4.2 up to 5.X (Thanks to @iacobus! [See pull request](https://github.com/chaps-io/gush/pull/54)) ## 1.1.0 - 2018-02-05 -## Added +### Added - Added ability to specify TTL for Redis keys and manually expire whole workflows (Thanks to @dmitrypol! [See pull request](https://github.com/chaps-io/gush/pull/48)) - Loosened dependency on redis-rb library to >= 3.2 and < 5.0 (Thanks to @mofumofu3n! [See pull request](https://github.com/chaps-io/gush/pull/52)) -## Fixed +### Fixed - Improved performance of (de)serializing workflows by not storing job array inside workflow JSON and other smaller improvements ([See pull request](https://github.com/chaps-io/gush/pull/53)) diff --git a/gush.gemspec b/gush.gemspec index 3423215..81de067 100644 --- a/gush.gemspec +++ b/gush.gemspec @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "gush" - spec.version = "2.0.2" + spec.version = "2.1.0" spec.authors = ["Piotrek Okoński"] spec.email = ["piotrek@okonski.org"] spec.summary = "Fast and distributed workflow runner based on ActiveJob and Redis"