Skip to content

Commit 80c3be0

Browse files
authored
Bump protobuf to 3.19.2
1 parent 86b8b26 commit 80c3be0

21 files changed

Lines changed: 29 additions & 29 deletions

File tree

COMPILING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ This section is only necessary if you are making changes to the code
4343
generation. Most users only need to use `skipCodegen=true` as discussed above.
4444

4545
### Build Protobuf
46-
The codegen plugin is C++ code and requires protobuf 3.19.1 or later.
46+
The codegen plugin is C++ code and requires protobuf 3.19.2 or later.
4747

4848
For Linux, Mac and MinGW:
4949
```
50-
$ PROTOBUF_VERSION=3.19.1
50+
$ PROTOBUF_VERSION=3.19.2
5151
$ curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v$PROTOBUF_VERSION/protobuf-all-$PROTOBUF_VERSION.tar.gz
5252
$ tar xzf protobuf-all-$PROTOBUF_VERSION.tar.gz
5353
$ cd protobuf-$PROTOBUF_VERSION

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ subprojects {
5757
nettyVersion = '4.1.63.Final'
5858
guavaVersion = '30.1.1-android'
5959
googleauthVersion = '0.22.2'
60-
protobufVersion = '3.19.1'
60+
protobufVersion = '3.19.2'
6161
protocVersion = protobufVersion
6262
opencensusVersion = '0.28.0'
6363
autovalueVersion = '1.7.4'

buildscripts/make_dependencies.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set PROTOBUF_VER=3.19.1
1+
set PROTOBUF_VER=3.19.2
22
set CMAKE_NAME=cmake-3.3.2-win32-x86
33

44
if not exist "protobuf-%PROTOBUF_VER%\cmake\build\Release\" (

buildscripts/make_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Build protoc
44
set -evux -o pipefail
55

6-
PROTOBUF_VERSION=3.19.1
6+
PROTOBUF_VERSION=3.19.2
77

88
# ARCH is x86_64 bit unless otherwise specified.
99
ARCH="${ARCH:-x86_64}"

examples/android/clientcache/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
}
3333

3434
protobuf {
35-
protoc { artifact = 'com.google.protobuf:protoc:3.19.1' }
35+
protoc { artifact = 'com.google.protobuf:protoc:3.19.2' }
3636
plugins {
3737
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.44.0-SNAPSHOT' // CURRENT_GRPC_VERSION
3838
}

examples/android/helloworld/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
}
3131

3232
protobuf {
33-
protoc { artifact = 'com.google.protobuf:protoc:3.19.1' }
33+
protoc { artifact = 'com.google.protobuf:protoc:3.19.2' }
3434
plugins {
3535
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.44.0-SNAPSHOT' // CURRENT_GRPC_VERSION
3636
}

examples/android/routeguide/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
}
3131

3232
protobuf {
33-
protoc { artifact = 'com.google.protobuf:protoc:3.19.1' }
33+
protoc { artifact = 'com.google.protobuf:protoc:3.19.2' }
3434
plugins {
3535
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.44.0-SNAPSHOT' // CURRENT_GRPC_VERSION
3636
}

examples/android/strictmode/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ android {
3131
}
3232

3333
protobuf {
34-
protoc { artifact = 'com.google.protobuf:protoc:3.19.1' }
34+
protoc { artifact = 'com.google.protobuf:protoc:3.19.2' }
3535
plugins {
3636
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.44.0-SNAPSHOT' // CURRENT_GRPC_VERSION
3737
}

examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ targetCompatibility = 1.7
2323
// Feel free to delete the comment at the next line. It is just for safely
2424
// updating the version in our release process.
2525
def grpcVersion = '1.44.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26-
def protobufVersion = '3.19.1'
26+
def protobufVersion = '3.19.2'
2727
def protocVersion = protobufVersion
2828

2929
dependencies {

examples/example-alts/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ targetCompatibility = 1.7
2424
// Feel free to delete the comment at the next line. It is just for safely
2525
// updating the version in our release process.
2626
def grpcVersion = '1.44.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27-
def protocVersion = '3.19.1'
27+
def protocVersion = '3.19.2'
2828

2929
dependencies {
3030
// grpc-alts transitively depends on grpc-netty-shaded, grpc-protobuf, and grpc-stub

0 commit comments

Comments
 (0)