Skip to content

Commit

Permalink
v0.18.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hibiken committed Oct 3, 2021
1 parent b3ef9e9 commit d612a8a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

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.18.5"
const Version = "0.18.6"

// DefaultQueueName is the queue name used if none are specified by user.
const DefaultQueueName = "default"
Expand Down

0 comments on commit d612a8a

Please sign in to comment.