Skip to content

Commit

Permalink
v0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hibiken committed Feb 19, 2022
1 parent cea5110 commit a19909f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/base/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a19909f

Please sign in to comment.