Skip to content

Commit

Permalink
Merge pull request #179 from vmihailenco/release/v3.2.9
Browse files Browse the repository at this point in the history
chore: release v3.2.9 (release.sh)
  • Loading branch information
vmihailenco authored Aug 24, 2022
2 parents 9453f48 + 0a7b867 commit 2ba5e80
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## [3.2.9](https://github.com/vmihailenco/taskq/compare/v3.2.8...v3.2.9) (2022-08-24)


### Bug Fixes

* swapped dst and src arguments in zstd decode call ([e61a842](https://github.com/vmihailenco/taskq/commit/e61a84219a8fe65444da5ca9b19571d2245633f2))
* Use localStorage for memqueue tests instead of Redis for [#162](https://github.com/vmihailenco/taskq/issues/162) ([b2ec9f5](https://github.com/vmihailenco/taskq/commit/b2ec9f53b0a3182b49c1c1510172e3ab6ac34b85))


### Features

* allow set backoff duration for redis scheduler ([f6818a8](https://github.com/vmihailenco/taskq/commit/f6818a888f92e6a78e022aae2083d202bfdd3726))



## [3.2.8](https://github.com/vmihailenco/taskq/compare/v3.2.7...v3.2.8) (2021-11-18)


Expand Down
2 changes: 1 addition & 1 deletion example/redisexample/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.17

require (
github.com/go-redis/redis/v8 v8.11.5
github.com/vmihailenco/taskq/v3 v3.2.8
github.com/vmihailenco/taskq/v3 v3.2.9
)

require (
Expand Down
2 changes: 1 addition & 1 deletion example/sqsexample/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.17
require (
github.com/aws/aws-sdk-go v1.43.45
github.com/go-redis/redis/v8 v8.11.5
github.com/vmihailenco/taskq/v3 v3.2.8
github.com/vmihailenco/taskq/v3 v3.2.9
)

require (
Expand Down
2 changes: 1 addition & 1 deletion extra/taskqotel/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.17
replace github.com/vmihailenco/taskq/v3 => ../..

require (
github.com/vmihailenco/taskq/v3 v3.2.8
github.com/vmihailenco/taskq/v3 v3.2.9
go.opentelemetry.io/otel v1.6.3
go.opentelemetry.io/otel/trace v1.6.3

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "taskq",
"version": "3.2.8"
"version": "3.2.9"
}
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package taskq

// Version is the current release version.
func Version() string {
return "3.2.8"
return "3.2.9"
}

0 comments on commit 2ba5e80

Please sign in to comment.