Skip to content

Commit 9ce8c33

Browse files
authored
Updated version to 3.12.3 and updated CHANGES.txt. (#7580)
* Updated version to 3.12.3 and updated CHANGES.txt. * Re-ran generate_descriptor_protos.sh and made it more parallel.
1 parent 2360bac commit 9ce8c33

33 files changed

+54
-35
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2020-06-01 version 3.12.3 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
2+
3+
Objective-C
4+
* Tweak the union used for Extensions to support old generated code. #7573
5+
16
2020-05-26 version 3.12.2 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
27

38
C++

Protobuf-C++.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Protobuf-C++'
3-
s.version = '3.12.2'
3+
s.version = '3.12.3'
44
s.summary = 'Protocol Buffers v3 runtime library for C++.'
55
s.homepage = 'https://github.com/google/protobuf'
66
s.license = '3-Clause BSD License'

Protobuf.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# dependent projects use the :git notation to refer to the library.
66
Pod::Spec.new do |s|
77
s.name = 'Protobuf'
8-
s.version = '3.12.2'
8+
s.version = '3.12.3'
99
s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.'
1010
s.homepage = 'https://github.com/protocolbuffers/protobuf'
1111
s.license = '3-Clause BSD License'

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ AC_PREREQ(2.59)
1717
# In the SVN trunk, the version should always be the next anticipated release
1818
# version with the "-pre" suffix. (We used to use "-SNAPSHOT" but this pushed
1919
# the size of one file name in the dist tarfile over the 99-char limit.)
20-
AC_INIT([Protocol Buffers],[3.12.2],[protobuf@googlegroups.com],[protobuf])
20+
AC_INIT([Protocol Buffers],[3.12.3],[protobuf@googlegroups.com],[protobuf])
2121

2222
AM_MAINTAINER_MODE([enable])
2323

csharp/Google.Protobuf.Tools.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Google Protocol Buffers tools</title>
66
<summary>Tools for Protocol Buffers - Google's data interchange format.</summary>
77
<description>See project site for more info.</description>
8-
<version>3.12.2</version>
8+
<version>3.12.3</version>
99
<authors>Google Inc.</authors>
1010
<owners>protobuf-packages</owners>
1111
<licenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</licenseUrl>

csharp/src/Google.Protobuf/Google.Protobuf.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>C# runtime library for Protocol Buffers - Google's data interchange format.</Description>
55
<Copyright>Copyright 2015, Google Inc.</Copyright>
66
<AssemblyTitle>Google Protocol Buffers</AssemblyTitle>
7-
<VersionPrefix>3.12.2</VersionPrefix>
7+
<VersionPrefix>3.12.3</VersionPrefix>
88
<LangVersion>6</LangVersion>
99
<Authors>Google Inc.</Authors>
1010
<TargetFrameworks>netstandard1.0;netstandard2.0;net45</TargetFrameworks>

generate_descriptor_proto.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ do
6262
PROTOC=$BOOTSTRAP_PROTOC
6363
BOOTSTRAP_PROTOC=""
6464
else
65-
make $@ protoc
65+
make -j$(nproc) $@ protoc
6666
if test $? -ne 0; then
6767
echo "Failed to build protoc."
6868
exit 1

java/bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-bom</artifactId>
7-
<version>3.12.2</version>
7+
<version>3.12.3</version>
88
<packaging>pom</packaging>
99

1010
<name>Protocol Buffers [BOM]</name>

java/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.12.2</version>
7+
<version>3.12.3</version>
88
</parent>
99

1010
<artifactId>protobuf-java</artifactId>

java/lite/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.12.2</version>
7+
<version>3.12.3</version>
88
</parent>
99

1010
<artifactId>protobuf-javalite</artifactId>

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.12.2</version>
7+
<version>3.12.3</version>
88
<packaging>pom</packaging>
99

1010
<name>Protocol Buffers [Parent]</name>

java/util/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.12.2</version>
7+
<version>3.12.3</version>
88
</parent>
99

1010
<artifactId>protobuf-java-util</artifactId>

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-protobuf",
3-
"version": "3.12.2",
3+
"version": "3.12.3",
44
"description": "Protocol Buffers for JavaScript",
55
"main": "google-protobuf.js",
66
"files": [

php/ext/google/protobuf/package.xml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<email>protobuf-opensource@google.com</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2020-05-26</date>
14-
<time>13:57:10</time>
13+
<date>2020-06-01</date>
14+
<time>01:14:10</time>
1515
<version>
16-
<release>3.12.2</release>
17-
<api>3.12.2</api>
16+
<release>3.12.3</release>
17+
<api>3.12.3</api>
1818
</version>
1919
<stability>
2020
<release>stable</release>
@@ -599,5 +599,19 @@ G A release.
599599
<license uri="https://opensource.org/licenses/BSD-3-Clause">3-Clause BSD License</license>
600600
<notes>GA release.</notes>
601601
</release>
602+
<release>
603+
<version>
604+
<release>3.12.3</release>
605+
<api>3.12.3</api>
606+
</version>
607+
<stability>
608+
<release>stable</release>
609+
<api>stable</api>
610+
</stability>
611+
<date>2020-06-01</date>
612+
<time>01:09:39</time>
613+
<license uri="https://opensource.org/licenses/BSD-3-Clause">3-Clause BSD License</license>
614+
<notes>GA release.</notes>
615+
</release>
602616
</changelog>
603617
</package>

php/ext/google/protobuf/protobuf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#include "upb.h"
3838

3939
#define PHP_PROTOBUF_EXTNAME "protobuf"
40-
#define PHP_PROTOBUF_VERSION "3.12.2"
40+
#define PHP_PROTOBUF_VERSION "3.12.3"
4141

4242
#define MAX_LENGTH_OF_INT64 20
4343
#define SIZEOF_INT64 8

protoc-artifacts/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</parent>
99
<groupId>com.google.protobuf</groupId>
1010
<artifactId>protoc</artifactId>
11-
<version>3.12.2</version>
11+
<version>3.12.3</version>
1212
<packaging>pom</packaging>
1313
<name>Protobuf Compiler</name>
1414
<description>

python/google/protobuf/__init__.py

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

3131
# Copyright 2007 Google Inc. All Rights Reserved.
3232

33-
__version__ = '3.12.2'
33+
__version__ = '3.12.3'
3434

3535
if __name__ != '__main__':
3636
try:

ruby/google-protobuf.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "google-protobuf"
3-
s.version = "3.12.2"
3+
s.version = "3.12.3"
44
git_tag = "v#{s.version.to_s.sub('.rc.', '-rc')}" # Converts X.Y.Z.rc.N to vX.Y.Z-rcN, used for the git tag
55
s.licenses = ["BSD-3-Clause"]
66
s.summary = "Protocol Buffers"

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ else
1818
PTHREAD_DEF =
1919
endif
2020

21-
PROTOBUF_VERSION = 23:2:0
21+
PROTOBUF_VERSION = 23:3:0
2222

2323
if GCC
2424
# Turn on all warnings except for sign comparison (we ignore sign comparison

src/google/protobuf/any.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/api.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/compiler/plugin.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/descriptor.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/duration.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/empty.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/field_mask.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/port_def.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@
300300

301301
// Shared google3/opensource definitions. //////////////////////////////////////
302302

303-
#define PROTOBUF_VERSION 3012002
303+
#define PROTOBUF_VERSION 3012003
304304
#define PROTOBUF_MIN_HEADER_VERSION_FOR_PROTOC 3012000
305305
#define PROTOBUF_MIN_PROTOC_VERSION 3012000
306306
#define PROTOBUF_VERSION_SUFFIX ""

src/google/protobuf/source_context.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/struct.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/stubs/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ namespace internal {
8181

8282
// The current version, represented as a single integer to make comparison
8383
// easier: major * 10^6 + minor * 10^3 + micro
84-
#define GOOGLE_PROTOBUF_VERSION 3012002
84+
#define GOOGLE_PROTOBUF_VERSION 3012003
8585

8686
// A suffix string for alpha, beta or rc releases. Empty for stable releases.
8787
#define GOOGLE_PROTOBUF_VERSION_SUFFIX ""

src/google/protobuf/timestamp.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/type.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/wrappers.pb.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)