Skip to content

Commit c1d1765

Browse files
authored
Merge pull request grpc#20948 from yashykt/v1.25.0-bump
Bump version to v1.25.0
2 parents 2b3501a + 06a6175 commit c1d1765

34 files changed

+40
-40
lines changed

BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ g_stands_for = "game"
7676

7777
core_version = "7.0.0"
7878

79-
version = "1.25.0-pre1"
79+
version = "1.25.0"
8080

8181
GPR_PUBLIC_HDRS = [
8282
"include/grpc/support/alloc.h",

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
cmake_minimum_required(VERSION 3.5.1)
2525

2626
set(PACKAGE_NAME "grpc")
27-
set(PACKAGE_VERSION "1.25.0-pre1")
27+
set(PACKAGE_VERSION "1.25.0")
2828
set(gRPC_CORE_VERSION "8.0.0")
2929
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
3030
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -461,8 +461,8 @@ Q = @
461461
endif
462462

463463
CORE_VERSION = 8.0.0
464-
CPP_VERSION = 1.25.0-pre1
465-
CSHARP_VERSION = 2.25.0-pre1
464+
CPP_VERSION = 1.25.0
465+
CSHARP_VERSION = 2.25.0
466466

467467
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
468468
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)

build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ settings:
1515
core_version: 8.0.0
1616
csharp_major_version: 2
1717
g_stands_for: game
18-
version: 1.25.0-pre1
18+
version: 1.25.0
1919
filegroups:
2020
- name: alts_tsi
2121
headers:

gRPC-C++.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
Pod::Spec.new do |s|
2424
s.name = 'gRPC-C++'
2525
# TODO (mxyan): use version that match gRPC version when pod is stabilized
26-
# version = '1.25.0-pre1'
27-
version = '0.0.9-pre1'
26+
# version = '1.25.0'
27+
version = '0.0.9'
2828
s.version = version
2929
s.summary = 'gRPC C++ library'
3030
s.homepage = 'https://grpc.io'
3131
s.license = 'Apache License, Version 2.0'
3232
s.authors = { 'The gRPC contributors' => '[email protected]' }
3333

34-
grpc_version = '1.25.0-pre1'
34+
grpc_version = '1.25.0'
3535

3636
s.source = {
3737
:git => 'https://github.com/grpc/grpc.git',

gRPC-Core.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
Pod::Spec.new do |s|
2424
s.name = 'gRPC-Core'
25-
version = '1.25.0-pre1'
25+
version = '1.25.0'
2626
s.version = version
2727
s.summary = 'Core cross-platform gRPC library, written in C'
2828
s.homepage = 'https://grpc.io'

gRPC-ProtoRPC.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
Pod::Spec.new do |s|
2323
s.name = 'gRPC-ProtoRPC'
24-
version = '1.25.0-pre1'
24+
version = '1.25.0'
2525
s.version = version
2626
s.summary = 'RPC library for Protocol Buffers, based on gRPC'
2727
s.homepage = 'https://grpc.io'

gRPC-RxLibrary.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
Pod::Spec.new do |s|
2323
s.name = 'gRPC-RxLibrary'
24-
version = '1.25.0-pre1'
24+
version = '1.25.0'
2525
s.version = version
2626
s.summary = 'Reactive Extensions library for iOS/OSX.'
2727
s.homepage = 'https://grpc.io'

gRPC.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
Pod::Spec.new do |s|
2222
s.name = 'gRPC'
23-
version = '1.25.0-pre1'
23+
version = '1.25.0'
2424
s.version = version
2525
s.summary = 'gRPC client library for iOS/OSX'
2626
s.homepage = 'https://grpc.io'

package.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
<date>2019-09-24</date>
1414
<time>16:06:07</time>
1515
<version>
16-
<release>1.25.0RC1</release>
17-
<api>1.25.0RC1</api>
16+
<release>1.25.0</release>
17+
<api>1.25.0</api>
1818
</version>
1919
<stability>
20-
<release>beta</release>
21-
<api>beta</api>
20+
<release>stable</release>
21+
<api>stable</api>
2222
</stability>
2323
<license>Apache 2.0</license>
2424
<notes>

src/cpp/common/version_cc.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
#include <grpcpp/grpcpp.h>
2323

2424
namespace grpc {
25-
grpc::string Version() { return "1.25.0-pre1"; }
25+
grpc::string Version() { return "1.25.0"; }
2626
} // namespace grpc

src/csharp/Grpc.Core.Api/VersionInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ public static class VersionInfo
3838
/// <summary>
3939
/// Current version of gRPC C#
4040
/// </summary>
41-
public const string CurrentVersion = "2.25.0-pre1";
41+
public const string CurrentVersion = "2.25.0";
4242
}
4343
}

src/csharp/build/dependencies.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This file is generated -->
22
<Project>
33
<PropertyGroup>
4-
<GrpcCsharpVersion>2.25.0-pre1</GrpcCsharpVersion>
4+
<GrpcCsharpVersion>2.25.0</GrpcCsharpVersion>
55
<GoogleProtobufVersion>3.8.0</GoogleProtobufVersion>
66
</PropertyGroup>
77
</Project>

src/csharp/build_unitypackage.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@rem limitations under the License.
1414

1515
@rem Current package versions
16-
set VERSION=2.25.0-pre1
16+
set VERSION=2.25.0
1717

1818
@rem Adjust the location of nuget.exe
1919
set NUGET=C:\nuget\nuget.exe

src/objective-c/!ProtoCompiler-gRPCCppPlugin.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Pod::Spec.new do |s|
4242
# exclamation mark ensures that other "regular" pods will be able to find it as it'll be installed
4343
# before them.
4444
s.name = '!ProtoCompiler-gRPCCppPlugin'
45-
v = '1.25.0-pre1'
45+
v = '1.25.0'
4646
s.version = v
4747
s.summary = 'The gRPC ProtoC plugin generates C++ files from .proto services.'
4848
s.description = <<-DESC

src/objective-c/!ProtoCompiler-gRPCPlugin.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Pod::Spec.new do |s|
4242
# exclamation mark ensures that other "regular" pods will be able to find it as it'll be installed
4343
# before them.
4444
s.name = '!ProtoCompiler-gRPCPlugin'
45-
v = '1.25.0-pre1'
45+
v = '1.25.0'
4646
s.version = v
4747
s.summary = 'The gRPC ProtoC plugin generates Objective-C files from .proto services.'
4848
s.description = <<-DESC

src/objective-c/GRPCClient/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
// instead. This file can be regenerated from the template by running
2323
// `tools/buildgen/generate_projects.sh`.
2424

25-
#define GRPC_OBJC_VERSION_STRING @"1.25.0-pre1"
25+
#define GRPC_OBJC_VERSION_STRING @"1.25.0"

src/objective-c/tests/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
// instead. This file can be regenerated from the template by running
2323
// `tools/buildgen/generate_projects.sh`.
2424

25-
#define GRPC_OBJC_VERSION_STRING @"1.25.0-pre1"
25+
#define GRPC_OBJC_VERSION_STRING @"1.25.0"
2626
#define GRPC_C_VERSION_STRING @"8.0.0"

src/php/ext/grpc/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
#ifndef VERSION_H
2121
#define VERSION_H
2222

23-
#define PHP_GRPC_VERSION "1.25.0RC1"
23+
#define PHP_GRPC_VERSION "1.25.0"
2424

2525
#endif /* VERSION_H */

src/python/grpcio/grpc/_grpcio_metadata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio/grpc/_grpcio_metadata.py.template`!!!
1616

17-
__version__ = """1.25.0rc1"""
17+
__version__ = """1.25.0"""

src/python/grpcio/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio/grpc_version.py.template`!!!
1616

17-
VERSION = '1.25.0rc1'
17+
VERSION = '1.25.0'

src/python/grpcio_channelz/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio_channelz/grpc_version.py.template`!!!
1616

17-
VERSION = '1.25.0rc1'
17+
VERSION = '1.25.0'

src/python/grpcio_health_checking/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio_health_checking/grpc_version.py.template`!!!
1616

17-
VERSION = '1.25.0rc1'
17+
VERSION = '1.25.0'

src/python/grpcio_reflection/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio_reflection/grpc_version.py.template`!!!
1616

17-
VERSION = '1.25.0rc1'
17+
VERSION = '1.25.0'

src/python/grpcio_status/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio_status/grpc_version.py.template`!!!
1616

17-
VERSION = '1.25.0rc1'
17+
VERSION = '1.25.0'

src/python/grpcio_testing/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio_testing/grpc_version.py.template`!!!
1616

17-
VERSION = '1.25.0rc1'
17+
VERSION = '1.25.0'

src/python/grpcio_tests/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio_tests/grpc_version.py.template`!!!
1616

17-
VERSION = '1.25.0rc1'
17+
VERSION = '1.25.0'

src/ruby/lib/grpc/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
# GRPC contains the General RPC module.
1616
module GRPC
17-
VERSION = '1.25.0.pre1'
17+
VERSION = '1.25.0'
1818
end

src/ruby/tools/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414

1515
module GRPC
1616
module Tools
17-
VERSION = '1.25.0.pre1'
17+
VERSION = '1.25.0'
1818
end
1919
end

tools/distrib/python/grpcio_tools/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# AUTO-GENERATED FROM `$REPO_ROOT/templates/tools/distrib/python/grpcio_tools/grpc_version.py.template`!!!
1616

17-
VERSION = '1.25.0rc1'
17+
VERSION = '1.25.0'

tools/doxygen/Doxyfile.c++

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PROJECT_NAME = "GRPC C++"
4040
# could be handy for archiving the generated documentation or if some version
4141
# control system is used.
4242
43-
PROJECT_NUMBER = 1.25.0-pre1
43+
PROJECT_NUMBER = 1.25.0
4444
4545
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4646
# for a project that appears at the top of each page and should give viewer a

tools/doxygen/Doxyfile.c++.internal

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PROJECT_NAME = "GRPC C++"
4040
# could be handy for archiving the generated documentation or if some version
4141
# control system is used.
4242

43-
PROJECT_NUMBER = 1.25.0-pre1
43+
PROJECT_NUMBER = 1.25.0
4444

4545
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4646
# for a project that appears at the top of each page and should give viewer a

tools/doxygen/Doxyfile.objc

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PROJECT_NAME = "GRPC Objective-C"
4040
# could be handy for archiving the generated documentation or if some version
4141
# control system is used.
4242

43-
PROJECT_NUMBER = 1.25.0-pre1
43+
PROJECT_NUMBER = 1.25.0
4444

4545
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4646
# for a project that appears at the top of each page and should give viewer a

tools/doxygen/Doxyfile.objc.internal

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PROJECT_NAME = "GRPC Objective-C"
4040
# could be handy for archiving the generated documentation or if some version
4141
# control system is used.
4242

43-
PROJECT_NUMBER = 1.25.0-pre1
43+
PROJECT_NUMBER = 1.25.0
4444

4545
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4646
# for a project that appears at the top of each page and should give viewer a

0 commit comments

Comments
 (0)