Skip to content

Commit b6774ac

Browse files
authored
Upgrade go client version to 0.2.0 for Go Functions (apache#8241)
Signed-off-by: xiaolong.ran <[email protected]> ### Motivation We are glad that the Go client released the latest 0.2.0 version. In version 0.2.0, a series of functions have been enhanced. We should also upgrade the version that relies on Go client in Go Functions. ### Modifications Upgrade go client version from 0.1.0 to 0.2.0 for Go Functions
1 parent 5e60775 commit b6774ac

File tree

2 files changed

+99
-6
lines changed

2 files changed

+99
-6
lines changed

pulsar-function-go/go.mod

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ module github.com/apache/pulsar/pulsar-function-go
33
go 1.13
44

55
require (
6-
github.com/apache/pulsar-client-go v0.1.0
7-
github.com/golang/protobuf v1.3.2
8-
github.com/prometheus/client_golang v1.3.0
9-
github.com/prometheus/client_model v0.1.0
6+
github.com/apache/pulsar-client-go v0.2.0
7+
github.com/golang/protobuf v1.4.2
8+
github.com/prometheus/client_golang v1.7.1
9+
github.com/prometheus/client_model v0.2.0
1010
github.com/sirupsen/logrus v1.4.2
1111
github.com/stretchr/testify v1.4.0
12-
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
1312
google.golang.org/grpc v1.26.0
14-
gopkg.in/yaml.v2 v2.2.8
13+
gopkg.in/yaml.v2 v2.3.0
1514
)
1615

1716
replace github.com/apache/pulsar/pulsar-function-go/pf => ./pf

0 commit comments

Comments
 (0)