From d612a8a9e436be9c2cbee7a21ccc0c5488426f70 Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Sun, 3 Oct 2021 05:55:49 -0700 Subject: [PATCH] v0.18.6 --- CHANGELOG.md | 16 +++++++++++----- internal/base/base.go | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13f7bcd..77f15a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,25 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.18.5] - 2020-09-01 +## [0.18.6] - 2021-10-03 + +### Changed + +- Updated `github.com/go-redis/redis` package to v8 + +## [0.18.5] - 2021-09-01 ### Added - `IsFailure` config option is added to determine whether error returned from Handler counts as a failure. -## [0.18.4] - 2020-08-17 +## [0.18.4] - 2021-08-17 ### Fixed - Scheduler methods are now thread-safe. It's now safe to call `Register` and `Unregister` concurrently. -## [0.18.3] - 2020-08-09 +## [0.18.3] - 2021-08-09 ### Changed - `Client.Enqueue` no longer enqueues tasks with empty typename; Error message is returned. -## [0.18.2] - 2020-07-15 +## [0.18.2] - 2021-07-15 ### Changed @@ -36,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed latency issue around memory usage (see https://github.com/hibiken/asynq/issues/309). -## [0.18.1] - 2020-07-04 +## [0.18.1] - 2021-07-04 ### Changed diff --git a/internal/base/base.go b/internal/base/base.go index 5e2c916..e74bbca 100644 --- a/internal/base/base.go +++ b/internal/base/base.go @@ -23,7 +23,7 @@ import ( ) // Version of asynq library and CLI. -const Version = "0.18.5" +const Version = "0.18.6" // DefaultQueueName is the queue name used if none are specified by user. const DefaultQueueName = "default"