Skip to content

Commit 651340a

Browse files
authored
Merge pull request #67 from radekg/updating-for-2.13.0
Update protobuf to v2.13.0
2 parents 898f4f6 + 92d73cc commit 651340a

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.2-beta.1
1+
0.0.2-beta.2

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,11 @@ func main() {
7272

7373
}
7474
```
75+
76+
## Versions
77+
78+
Notes on the client versions:
79+
80+
- YugabyteDB `2.13.0`: use client version `v0.0.2-beta.2`
81+
- YugabyteDB `2.11.2`: use client version `v0.0.2-beta.1`
82+
- YugabyteDB `2.9.x`, `2.11.0`, `2.11.1`: use client version `v0.0.1-beta.4`

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/lib/pq v1.9.0
1010
// dockertest/v3 used in tests:
1111
github.com/ory/dockertest/v3 v3.8.1
12-
github.com/radekg/yugabyte-db-go-proto/v2 v2.11.2
12+
github.com/radekg/yugabyte-db-go-proto/v2 v2.13.0
1313
github.com/stretchr/testify v1.7.0
1414
google.golang.org/protobuf v1.27.1
1515
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE
122122
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
123123
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
124124
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
125-
github.com/radekg/yugabyte-db-go-proto/v2 v2.11.2 h1:isXDJeDl2goTZPlkC8999x9XgL9PS481aaEosGKEvbc=
126-
github.com/radekg/yugabyte-db-go-proto/v2 v2.11.2/go.mod h1:kgSW9MzHNqCkyRKjQ+dEWwEAMc4djhDWD2X07+JFmMk=
125+
github.com/radekg/yugabyte-db-go-proto/v2 v2.13.0 h1:A9iTz9XpiLzH0fJeDsm6+q56mGNt5tw7DUryNTBwVoM=
126+
github.com/radekg/yugabyte-db-go-proto/v2 v2.13.0/go.mod h1:kgSW9MzHNqCkyRKjQ+dEWwEAMc4djhDWD2X07+JFmMk=
127127
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
128128
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
129129
github.com/seccomp/libseccomp-golang v0.9.1/go.mod h1:GbW5+tmTXfcxTToHLXlScSlAvWlF4P2Ca7zGrPiEpWo=

testutils/common/configs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const (
1010
// DefaultYugabyteDBMasterImageName specifies the default Docker image name used in tests.
1111
DefaultYugabyteDBMasterImageName = "yugabytedb/yugabyte"
1212
// DefaultYugabyteDBImageVersion specifies the default Docker image version used in tests.
13-
DefaultYugabyteDBImageVersion = "2.11.2.0-b89"
13+
DefaultYugabyteDBImageVersion = "2.13.0.0-b42"
1414
// DefaultYugabyteDBContainerUser specifies the default Docker container user.
1515
DefaultYugabyteDBContainerUser = "yugabyte"
1616
// DefaultReplicationFactor specifies the default replication factor.

0 commit comments

Comments
 (0)