Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v3.2.9 (release.sh) #179

Merged
merged 1 commit into from
Aug 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}