2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-12-27 00:02:19 +08:00
This commit is contained in:
Ken Hibino 2021-10-03 05:55:49 -07:00
parent b3ef9e91a9
commit d612a8a9e4
2 changed files with 12 additions and 6 deletions

View File

@ -7,25 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [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 ### Added
- `IsFailure` config option is added to determine whether error returned from Handler counts as a failure. - `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 ### Fixed
- Scheduler methods are now thread-safe. It's now safe to call `Register` and `Unregister` concurrently. - 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 ### Changed
- `Client.Enqueue` no longer enqueues tasks with empty typename; Error message is returned. - `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 ### 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). - 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 ### Changed

View File

@ -23,7 +23,7 @@ import (
) )
// Version of asynq library and CLI. // 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. // DefaultQueueName is the queue name used if none are specified by user.
const DefaultQueueName = "default" const DefaultQueueName = "default"