Skip to content

Commit debc03d

Browse files
authored
Update protobuf version to 3.16.0-rc2 (#8556)
* Update CHANGES.txt * Update protobuf version
1 parent 17b0fb9 commit debc03d

File tree

19 files changed

+38
-21
lines changed

19 files changed

+38
-21
lines changed

Diff for: CHANGES.txt

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@
7272

7373
Ruby
7474
* Fixed quadratic memory usage when appending to arrays. (#8364)
75+
* Fixed memory leak of Ruby arena objects. (#8461)
76+
* Add support for proto3 json_name in compiler and field definitions. (#8356)
7577

7678
Other
7779
* Some doc on AOT compilation and protobuf (#8294)

Diff for: Protobuf-C++.podspec

+1-1
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.16.0-rc1'
3+
s.version = '3.16.0-rc2'
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'

Diff for: Protobuf.podspec

+1-1
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.16.0-rc1'
8+
s.version = '3.16.0-rc2'
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'

Diff for: configure.ac

+1-1
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.16.0-rc-1],[[email protected]],[protobuf])
20+
AC_INIT([Protocol Buffers],[3.16.0-rc-2],[[email protected]],[protobuf])
2121

2222
AM_MAINTAINER_MODE([enable])
2323

Diff for: csharp/Google.Protobuf.Tools.nuspec

+1-1
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.16.0-rc1</version>
8+
<version>3.16.0-rc2</version>
99
<authors>Google Inc.</authors>
1010
<owners>protobuf-packages</owners>
1111
<licenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</licenseUrl>

Diff for: csharp/src/Google.Protobuf/Google.Protobuf.csproj

+1-1
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.16.0-rc1</VersionPrefix>
7+
<VersionPrefix>3.16.0-rc2</VersionPrefix>
88
<!-- C# 7.2 is required for Span/BufferWriter/ReadOnlySequence -->
99
<LangVersion>7.2</LangVersion>
1010
<Authors>Google Inc.</Authors>

Diff for: java/bom/pom.xml

+1-1
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.16.0-rc-1</version>
7+
<version>3.16.0-rc-2</version>
88
<packaging>pom</packaging>
99

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

Diff for: java/core/pom.xml

+1-1
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.16.0-rc-1</version>
7+
<version>3.16.0-rc-2</version>
88
</parent>
99

1010
<artifactId>protobuf-java</artifactId>

Diff for: java/lite/pom.xml

+1-1
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.16.0-rc-1</version>
7+
<version>3.16.0-rc-2</version>
88
</parent>
99

1010
<artifactId>protobuf-javalite</artifactId>

Diff for: java/pom.xml

+1-1
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.16.0-rc-1</version>
7+
<version>3.16.0-rc-2</version>
88
<packaging>pom</packaging>
99

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

Diff for: java/util/pom.xml

+1-1
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.16.0-rc-1</version>
7+
<version>3.16.0-rc-2</version>
88
</parent>
99

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

Diff for: js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-protobuf",
3-
"version": "3.16.0-rc.1",
3+
"version": "3.16.0-rc.2",
44
"description": "Protocol Buffers for JavaScript",
55
"main": "google-protobuf.js",
66
"files": [

Diff for: php/ext/google/protobuf/package.xml

+19-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<package packagerversion="1.9.5" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
2+
<package xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" packagerversion="1.9.5" version="2.0" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
33
<name>protobuf</name>
44
<channel>pecl.php.net</channel>
55
<summary>Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.</summary>
@@ -10,10 +10,10 @@
1010
<email>[email protected]</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2021-04-02</date>
14-
<time>16:11:33</time>
13+
<date>2021-05-03</date>
14+
<time>16:40:57</time>
1515
<version>
16-
<release>3.16.0RC1</release>
16+
<release>3.16.0RC2</release>
1717
<api>3.16.0</api>
1818
</version>
1919
<stability>
@@ -917,5 +917,20 @@ G A release.
917917
<notes>
918918
</notes>
919919
</release>
920+
<release>
921+
<version>
922+
<release>3.16.0RC2</release>
923+
<api>3.16.0</api>
924+
</version>
925+
<stability>
926+
<release>beta</release>
927+
<api>beta</api>
928+
</stability>
929+
<date>2021-05-03</date>
930+
<time>16:40:57</time>
931+
<license uri="https://opensource.org/licenses/BSD-3-Clause">3-Clause BSD License</license>
932+
<notes>
933+
</notes>
934+
</release>
920935
</changelog>
921936
</package>

Diff for: php/ext/google/protobuf/protobuf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_setter, 0, 0, 1)
7676
ZEND_ARG_INFO(0, value)
7777
ZEND_END_ARG_INFO()
7878

79-
#define PHP_PROTOBUF_VERSION "3.16.0RC1"
79+
#define PHP_PROTOBUF_VERSION "3.16.0RC2"
8080

8181
// ptr -> PHP object cache. This is a weak map that caches lazily-created
8282
// wrapper objects around upb types:

Diff for: protoc-artifacts/pom.xml

+1-1
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.16.0-rc-1</version>
11+
<version>3.16.0-rc-2</version>
1212
<packaging>pom</packaging>
1313
<name>Protobuf Compiler</name>
1414
<description>

Diff for: python/google/protobuf/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030

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

33-
__version__ = '3.16.0rc1'
33+
__version__ = '3.16.0rc2'

Diff for: ruby/google-protobuf.gemspec

+1-1
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.16.0.rc.1"
3+
s.version = "3.16.0.rc.2"
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"

Diff for: src/google/protobuf/port_def.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@
340340
#define PROTOBUF_VERSION 3016000
341341
#define PROTOBUF_MIN_HEADER_VERSION_FOR_PROTOC 3016000
342342
#define PROTOBUF_MIN_PROTOC_VERSION 3016000
343-
#define PROTOBUF_VERSION_SUFFIX "-rc1"
343+
#define PROTOBUF_VERSION_SUFFIX "-rc2"
344344

345345
// The minimum library version which works with the current version of the
346346
// headers.

Diff for: src/google/protobuf/stubs/common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ namespace internal {
8585
#define GOOGLE_PROTOBUF_VERSION 3016000
8686

8787
// A suffix string for alpha, beta or rc releases. Empty for stable releases.
88-
#define GOOGLE_PROTOBUF_VERSION_SUFFIX "-rc1"
88+
#define GOOGLE_PROTOBUF_VERSION_SUFFIX "-rc2"
8989

9090
// The minimum header version which works with the current version of
9191
// the library. This constant should only be used by protoc's C++ code

0 commit comments

Comments
 (0)