diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a81ba7..aeaf4c7 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.13.0] - 2020-10-13 + ### Added - `Scheduler` type is added to enable periodic tasks. See the godoc for its APIs and [wiki](https://github.com/hibiken/asynq/wiki/Periodic-Tasks) for the getting-started guide. diff --git a/internal/base/base.go b/internal/base/base.go index db94299..1cad7de 100644 --- a/internal/base/base.go +++ b/internal/base/base.go @@ -19,7 +19,7 @@ import ( ) // Version of asynq library and CLI. -const Version = "0.12.0" +const Version = "0.13.0" // DefaultQueueName is the queue name used if none are specified by user. const DefaultQueueName = "default"