From a19909f5f4197023a389422bed610fdb12bca518 Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Sat, 19 Feb 2022 06:20:05 -0800 Subject: [PATCH] v0.22.0 --- CHANGELOG.md | 2 ++ go.mod | 2 +- internal/base/base.go | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 927880a..32e30c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0] - 2022-02-19 + ### Added - `BaseContext` is introduced in `Config` to specify callback hook to provide a base `context` from which `Handler` `context` is derived diff --git a/go.mod b/go.mod index acd4d4e..12c9d4c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hibiken/asynq -go 1.13 +go 1.14 require ( github.com/go-redis/redis/v8 v8.11.2 diff --git a/internal/base/base.go b/internal/base/base.go index b4ed2ed..ea3e84d 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.21.0" +const Version = "0.22.0" // DefaultQueueName is the queue name used if none are specified by user. const DefaultQueueName = "default"