Skip to content

Commit

Permalink
chore: release v4.0.0-beta.3 (release.sh)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Apr 4, 2023
1 parent 63a5005 commit 17475dd
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# [4.0.0-beta.3](https://github.com/vmihailenco/taskq/compare/v4.0.0-beta.2...v4.0.0-beta.3) (2023-04-04)



# [4.0.0-beta.2](https://github.com/vmihailenco/taskq/compare/v4.0.0-beta.1...v4.0.0-beta.2) (2023-04-04)


Expand Down
4 changes: 2 additions & 2 deletions example/redisexample/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ replace github.com/vmihailenco/taskq/taskqtest/v4 => ../../taskqtest

require (
github.com/redis/go-redis/v9 v9.0.3
github.com/vmihailenco/taskq/redisq/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/redisq/v4 v4.0.0-beta.3
github.com/vmihailenco/taskq/v4 v4.0.0-beta.3
)

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 @@ -7,7 +7,7 @@ replace github.com/vmihailenco/taskq/v4 => ../..
replace github.com/vmihailenco/taskq/memqueue/v4 => ../../memqueue

require (
github.com/vmihailenco/taskq/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/v4 v4.0.0-beta.3
go.opentelemetry.io/otel v1.14.0
go.opentelemetry.io/otel/trace v1.14.0

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/klauspost/compress v1.16.3
github.com/redis/go-redis/v9 v9.0.3
github.com/vmihailenco/msgpack/v5 v5.3.5
github.com/vmihailenco/taskq/memqueue/v4 v4.0.0-beta.1
github.com/vmihailenco/taskq/memqueue/v4 v4.0.0-beta.3
)

require (
Expand Down
2 changes: 1 addition & 1 deletion memqueue/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/onsi/gomega v1.27.6
github.com/redis/go-redis/v9 v9.0.3
github.com/satori/go.uuid v1.2.0
github.com/vmihailenco/taskq/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/v4 v4.0.0-beta.3
)

require (
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": "4.0.0-beta.2"
"version": "4.0.0-beta.3"
}
4 changes: 2 additions & 2 deletions pgq/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ require (
github.com/uptrace/bun/dialect/pgdialect v1.1.12
github.com/uptrace/bun/driver/pgdriver v1.1.12
github.com/uptrace/bun/extra/bundebug v1.1.12
github.com/vmihailenco/taskq/taskqtest/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/taskqtest/v4 v4.0.0-beta.3
github.com/vmihailenco/taskq/v4 v4.0.0-beta.3
)

require (
Expand Down
4 changes: 2 additions & 2 deletions redisq/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ require (
github.com/oklog/ulid/v2 v2.1.0
github.com/redis/go-redis/v9 v9.0.3
github.com/stretchr/testify v1.8.2
github.com/vmihailenco/taskq/taskqtest/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/taskqtest/v4 v4.0.0-beta.3
github.com/vmihailenco/taskq/v4 v4.0.0-beta.3
)

require (
Expand Down
2 changes: 1 addition & 1 deletion taskqtest/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/go-redis/redis_rate/v10 v10.0.1
github.com/redis/go-redis/v9 v9.0.3
github.com/stretchr/testify v1.8.2
github.com/vmihailenco/taskq/v4 v4.0.0-beta.2
github.com/vmihailenco/taskq/v4 v4.0.0-beta.3
)

require (
Expand Down
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 "4.0.0-beta.2"
return "4.0.0-beta.3"
}

0 comments on commit 17475dd

Please sign in to comment.