Skip to content

Commit 1fa42c4

Browse files
Updating version.json and repo version numbers to: 21.0-rc2
1 parent d031130 commit 1fa42c4

File tree

24 files changed

+57
-42
lines changed

24 files changed

+57
-42
lines changed

Protobuf-C++.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = 'Protobuf-C++'
3-
s.version = '3.21.0-rc1'
3+
s.version = '3.21.0-rc2'
44
s.summary = 'Protocol Buffers v3 runtime library for C++.'
55
s.homepage = 'https://github.com/google/protobuf'
66
s.license = 'BSD-3-Clause'
77
s.authors = { 'The Protocol Buffers contributors' => '[email protected]' }
88
s.cocoapods_version = '>= 1.0'
99

1010
s.source = { :git => 'https://github.com/google/protobuf.git',
11-
:tag => "v#{s.version}" }
11+
:tag => "v21.0-rc2" }
1212

1313
s.source_files = 'src/google/protobuf/*.{h,cc,inc}',
1414
'src/google/protobuf/stubs/*.{h,cc}',

Protobuf.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
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.21.0-rc1'
8+
s.version = '3.21.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 = 'BSD-3-Clause'
1212
s.authors = { 'The Protocol Buffers contributors' => '[email protected]' }
1313
s.cocoapods_version = '>= 1.0'
1414

1515
s.source = { :git => 'https://github.com/protocolbuffers/protobuf.git',
16-
:tag => "v#{s.version}" }
16+
:tag => "v21.0-rc2" }
1717

1818
s.source_files = 'objectivec/*.{h,m}',
1919
'objectivec/google/protobuf/Any.pbobjc.h',

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.21.0-rc-1],[[email protected]],[protobuf])
20+
AC_INIT([Protocol Buffers],[3.21.0-rc-2],[[email protected]],[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.21.0-rc1</version>
8+
<version>3.21.0-rc2</version>
99
<authors>Google Inc.</authors>
1010
<owners>protobuf-packages</owners>
1111
<licenseUrl>https://github.com/protocolbuffers/protobuf/blob/main/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.21.0-rc1</VersionPrefix>
7+
<VersionPrefix>3.21.0-rc2</VersionPrefix>
88
<!-- C# 7.2 is required for Span/BufferWriter/ReadOnlySequence -->
99
<LangVersion>7.2</LangVersion>
1010
<Authors>Google Inc.</Authors>

java/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you are using Maven, use the following:
2323
<dependency>
2424
<groupId>com.google.protobuf</groupId>
2525
<artifactId>protobuf-java</artifactId>
26-
<version>3.21.0-rc-1</version>
26+
<version>3.21.0-rc-2</version>
2727
</dependency>
2828
```
2929

@@ -37,15 +37,15 @@ protobuf-java-util package:
3737
<dependency>
3838
<groupId>com.google.protobuf</groupId>
3939
<artifactId>protobuf-java-util</artifactId>
40-
<version>3.21.0-rc-1</version>
40+
<version>3.21.0-rc-2</version>
4141
</dependency>
4242
```
4343

4444
### Gradle
4545

4646
If you are using Gradle, add the following to your `build.gradle` file's dependencies:
4747
```
48-
implementation 'com.google.protobuf:protobuf-java:3.21.0-rc-1'
48+
implementation 'com.google.protobuf:protobuf-java:3.21.0-rc-2'
4949
```
5050
Again, be sure to check that the version number matches (or is newer than) the version number of protoc that you are using.
5151

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

1010
<artifactId>protobuf-java</artifactId>

java/kotlin-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.21.0-rc-1</version>
7+
<version>3.21.0-rc-2</version>
88
</parent>
99

1010
<artifactId>protobuf-kotlin-lite</artifactId>

java/kotlin/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.21.0-rc-1</version>
7+
<version>3.21.0-rc-2</version>
88
</parent>
99

1010
<artifactId>protobuf-kotlin</artifactId>

0 commit comments

Comments
 (0)