Skip to content

Commit

Permalink
Merge pull request #139 from vmihailenco/release/v3.2.6
Browse files Browse the repository at this point in the history
chore: release v3.2.6 (release.sh)
  • Loading branch information
vmihailenco authored Oct 11, 2021
2 parents d317b0c + e1450c9 commit c9e62e6
Show file tree
Hide file tree
Showing 9 changed files with 119 additions and 213 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## [3.2.6](https://github.com/vmihailenco/taskq/compare/v3.2.5...v3.2.6) (2021-10-11)


### Bug Fixes

* introduce interfaces to allow mocking in tests ([6bc8f3b](https://github.com/vmihailenco/taskq/commit/6bc8f3b0462812996c39605c10428b43460696ff))



4 changes: 2 additions & 2 deletions example/api_worker/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module github.com/vmihailenco/taskq/example/api_worker
go 1.15

require (
github.com/go-redis/redis/v8 v8.11.2
github.com/vmihailenco/taskq/v3 v3.2.5
github.com/go-redis/redis/v8 v8.11.4
github.com/vmihailenco/taskq/v3 v3.2.6
)

replace github.com/vmihailenco/taskq/v3 => ../..
104 changes: 35 additions & 69 deletions example/api_worker/go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions example/sqs_api_worker/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ go 1.15

require (
github.com/aws/aws-sdk-go v1.40.25
github.com/go-redis/redis/v8 v8.11.2
github.com/vmihailenco/taskq/v3 v3.2.5
github.com/go-redis/redis/v8 v8.11.4
github.com/vmihailenco/taskq/v3 v3.2.6
)

replace github.com/vmihailenco/taskq/v3 => ../..
104 changes: 35 additions & 69 deletions example/sqs_api_worker/go.sum

Large diffs are not rendered by default.

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.15
replace github.com/vmihailenco/taskq/v3 => ../..

require (
github.com/vmihailenco/taskq/v3 v3.2.5
github.com/vmihailenco/taskq/v3 v3.2.6
go.opentelemetry.io/otel v1.0.0-RC2
go.opentelemetry.io/otel/trace v1.0.0-RC2

Expand Down
101 changes: 33 additions & 68 deletions extra/taskqotel/go.sum

Large diffs are not rendered by default.

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": "0.0.0"
"version": "3.2.6"
}
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.5"
return "3.2.6"
}

0 comments on commit c9e62e6

Please sign in to comment.