Skip to content

Commit ffb5921

Browse files
authored
all: prep for release (#3292)
1 parent 20202d1 commit ffb5921

File tree

8 files changed

+13
-37
lines changed

8 files changed

+13
-37
lines changed

docstore/mongodocstore/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require (
2020
github.com/google/go-cmp v0.5.9
2121
github.com/google/wire v0.5.0
2222
go.mongodb.org/mongo-driver v1.12.0
23-
gocloud.dev v0.32.0
23+
gocloud.dev v0.33.0
2424
)
2525

2626
require (
@@ -70,5 +70,3 @@ require (
7070
google.golang.org/grpc v1.57.0 // indirect
7171
google.golang.org/protobuf v1.31.0 // indirect
7272
)
73-
74-
replace gocloud.dev => ../../

internal/useragent/useragent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
const (
2828
prefix = "go-cloud"
29-
version = "0.32.0"
29+
version = "0.33.0"
3030
)
3131

3232
// ClientOption returns an option.ClientOption that sets a Go CDK User-Agent.

pubsub/kafkapubsub/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ go 1.19
1919
require (
2020
github.com/Shopify/sarama v1.38.1
2121
github.com/google/go-cmp v0.5.9
22-
gocloud.dev v0.32.0
22+
gocloud.dev v0.33.0
2323
)
2424

2525
require (
@@ -78,5 +78,3 @@ require (
7878
google.golang.org/grpc v1.57.0 // indirect
7979
google.golang.org/protobuf v1.31.0 // indirect
8080
)
81-
82-
replace gocloud.dev => ../../

pubsub/natspubsub/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require (
2020
github.com/google/go-cmp v0.5.9
2121
github.com/nats-io/nats-server/v2 v2.9.20
2222
github.com/nats-io/nats.go v1.28.0
23-
gocloud.dev v0.32.0
23+
gocloud.dev v0.33.0
2424
)
2525

2626
require (
@@ -45,5 +45,3 @@ require (
4545
google.golang.org/grpc v1.57.0 // indirect
4646
google.golang.org/protobuf v1.31.0 // indirect
4747
)
48-
49-
replace gocloud.dev => ../../

pubsub/rabbitpubsub/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ go 1.19
1818

1919
require (
2020
github.com/rabbitmq/amqp091-go v1.8.1
21-
gocloud.dev v0.32.0
21+
gocloud.dev v0.33.0
2222
)
2323

2424
require (
@@ -62,5 +62,3 @@ require (
6262
google.golang.org/grpc v1.57.0 // indirect
6363
google.golang.org/protobuf v1.31.0 // indirect
6464
)
65-
66-
replace gocloud.dev => ../../

runtimevar/etcdvar/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require (
2020
github.com/google/go-cmp v0.5.9
2121
go.etcd.io/etcd v3.3.27+incompatible
2222
go.etcd.io/etcd/client/v3 v3.5.9
23-
gocloud.dev v0.32.0
23+
gocloud.dev v0.33.0
2424
google.golang.org/grpc v1.57.0
2525
)
2626

@@ -72,5 +72,3 @@ require (
7272
google.golang.org/genproto/googleapis/rpc v0.0.0-20230731193218-e0aa005b6bdf // indirect
7373
google.golang.org/protobuf v1.31.0 // indirect
7474
)
75-
76-
replace gocloud.dev => ../../

samples/go.mod

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ require (
2929
github.com/gorilla/mux v1.8.0
3030
github.com/streadway/amqp v1.0.0
3131
go.opencensus.io v0.24.0
32-
gocloud.dev v0.32.0
33-
gocloud.dev/docstore/mongodocstore v0.32.0
34-
gocloud.dev/pubsub/kafkapubsub v0.32.0
35-
gocloud.dev/pubsub/natspubsub v0.32.0
36-
gocloud.dev/pubsub/rabbitpubsub v0.32.0
37-
gocloud.dev/secrets/hashivault v0.32.0
32+
gocloud.dev v0.33.0
33+
gocloud.dev/docstore/mongodocstore v0.33.0
34+
gocloud.dev/pubsub/kafkapubsub v0.33.0
35+
gocloud.dev/pubsub/natspubsub v0.33.0
36+
gocloud.dev/pubsub/rabbitpubsub v0.33.0
37+
gocloud.dev/secrets/hashivault v0.33.0
3838
google.golang.org/genproto v0.0.0-20230731193218-e0aa005b6bdf
3939
gopkg.in/pipe.v2 v2.0.0-20140414041502-3c2ca4d52544
4040
)
@@ -162,15 +162,3 @@ require (
162162
google.golang.org/grpc v1.57.0 // indirect
163163
google.golang.org/protobuf v1.31.0 // indirect
164164
)
165-
166-
replace gocloud.dev => ../
167-
168-
replace gocloud.dev/docstore/mongodocstore => ../docstore/mongodocstore
169-
170-
replace gocloud.dev/pubsub/kafkapubsub => ../pubsub/kafkapubsub
171-
172-
replace gocloud.dev/pubsub/natspubsub => ../pubsub/natspubsub
173-
174-
replace gocloud.dev/pubsub/rabbitpubsub => ../pubsub/rabbitpubsub
175-
176-
replace gocloud.dev/secrets/hashivault => ../secrets/hashivault

secrets/hashivault/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ go 1.19
1818

1919
require (
2020
github.com/hashicorp/vault/api v1.9.2
21-
gocloud.dev v0.32.0
21+
gocloud.dev v0.33.0
2222
)
2323

2424
require (
@@ -76,5 +76,3 @@ require (
7676
google.golang.org/grpc v1.57.0 // indirect
7777
google.golang.org/protobuf v1.31.0 // indirect
7878
)
79-
80-
replace gocloud.dev => ../../

0 commit comments

Comments
 (0)