Skip to content

Commit 0a7b867

Browse files
committed
chore: release v3.2.9 (release.sh)
1 parent 9453f48 commit 0a7b867

File tree

6 files changed

+20
-5
lines changed

6 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## [3.2.9](https://github.com/vmihailenco/taskq/compare/v3.2.8...v3.2.9) (2022-08-24)
2+
3+
4+
### Bug Fixes
5+
6+
* swapped dst and src arguments in zstd decode call ([e61a842](https://github.com/vmihailenco/taskq/commit/e61a84219a8fe65444da5ca9b19571d2245633f2))
7+
* 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))
8+
9+
10+
### Features
11+
12+
* allow set backoff duration for redis scheduler ([f6818a8](https://github.com/vmihailenco/taskq/commit/f6818a888f92e6a78e022aae2083d202bfdd3726))
13+
14+
15+
116
## [3.2.8](https://github.com/vmihailenco/taskq/compare/v3.2.7...v3.2.8) (2021-11-18)
217

318

example/redisexample/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.17
44

55
require (
66
github.com/go-redis/redis/v8 v8.11.5
7-
github.com/vmihailenco/taskq/v3 v3.2.8
7+
github.com/vmihailenco/taskq/v3 v3.2.9
88
)
99

1010
require (

example/sqsexample/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.17
55
require (
66
github.com/aws/aws-sdk-go v1.43.45
77
github.com/go-redis/redis/v8 v8.11.5
8-
github.com/vmihailenco/taskq/v3 v3.2.8
8+
github.com/vmihailenco/taskq/v3 v3.2.9
99
)
1010

1111
require (

extra/taskqotel/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.17
55
replace github.com/vmihailenco/taskq/v3 => ../..
66

77
require (
8-
github.com/vmihailenco/taskq/v3 v3.2.8
8+
github.com/vmihailenco/taskq/v3 v3.2.9
99
go.opentelemetry.io/otel v1.6.3
1010
go.opentelemetry.io/otel/trace v1.6.3
1111

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "taskq",
3-
"version": "3.2.8"
3+
"version": "3.2.9"
44
}

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package taskq
22

33
// Version is the current release version.
44
func Version() string {
5-
return "3.2.8"
5+
return "3.2.9"
66
}

0 commit comments

Comments
 (0)