Skip to content

Commit c80d332

Browse files
Merge pull request grpc#11073 from stanley-cheung/bump-to-1_3_2
Bump to version 1.3.2
2 parents 80e409f + 3b90b7d commit c80d332

28 files changed

+32
-32
lines changed

BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ g_stands_for = "gentle"
4242

4343
core_version = "3.0.0"
4444

45-
version = "1.3.1"
45+
version = "1.3.2"
4646

4747
grpc_cc_library(
4848
name = "gpr",

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
cmake_minimum_required(VERSION 2.8)
4040

4141
set(PACKAGE_NAME "grpc")
42-
set(PACKAGE_VERSION "1.3.2-pre1")
42+
set(PACKAGE_VERSION "1.3.2")
4343
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
4444
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
4545
set(PACKAGE_BUGREPORT "https://github.com/grpc/grpc/issues/")

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -420,8 +420,8 @@ Q = @
420420
endif
421421

422422
CORE_VERSION = 3.0.0
423-
CPP_VERSION = 1.3.2-pre1
424-
CSHARP_VERSION = 1.3.2-pre1
423+
CPP_VERSION = 1.3.2
424+
CSHARP_VERSION = 1.3.2
425425

426426
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
427427
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)

build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ settings:
1414
'#10': See the expand_version.py for all the quirks here
1515
core_version: 3.0.0
1616
g_stands_for: gentle
17-
version: 1.3.2-pre1
17+
version: 1.3.2
1818
filegroups:
1919
- name: census
2020
public_headers:

gRPC-Core.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
Pod::Spec.new do |s|
3939
s.name = 'gRPC-Core'
40-
version = '1.3.2-pre1'
40+
version = '1.3.2'
4141
s.version = version
4242
s.summary = 'Core cross-platform gRPC library, written in C'
4343
s.homepage = 'http://www.grpc.io'

gRPC-ProtoRPC.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
Pod::Spec.new do |s|
3838
s.name = 'gRPC-ProtoRPC'
39-
version = '1.3.2-pre1'
39+
version = '1.3.2'
4040
s.version = version
4141
s.summary = 'RPC library for Protocol Buffers, based on gRPC'
4242
s.homepage = 'http://www.grpc.io'

gRPC-RxLibrary.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
Pod::Spec.new do |s|
3838
s.name = 'gRPC-RxLibrary'
39-
version = '1.3.2-pre1'
39+
version = '1.3.2'
4040
s.version = version
4141
s.summary = 'Reactive Extensions library for iOS/OSX.'
4242
s.homepage = 'http://www.grpc.io'

gRPC.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
Pod::Spec.new do |s|
3737
s.name = 'gRPC'
38-
version = '1.3.2-pre1'
38+
version = '1.3.2'
3939
s.version = version
4040
s.summary = 'gRPC client library for iOS/OSX'
4141
s.homepage = 'http://www.grpc.io'

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grpc",
3-
"version": "1.3.2-pre1",
3+
"version": "1.3.2",
44
"author": "Google Inc.",
55
"description": "gRPC Library for Node",
66
"homepage": "http://www.grpc.io/",

package.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<date>2017-05-05</date>
1414
<time>16:06:07</time>
1515
<version>
16-
<release>1.3.2RC1</release>
17-
<api>1.3.2RC1</api>
16+
<release>1.3.2</release>
17+
<api>1.3.2</api>
1818
</version>
1919
<stability>
2020
<release>beta</release>

src/cpp/common/version_cc.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@
3737
#include <grpc++/grpc++.h>
3838

3939
namespace grpc {
40-
grpc::string Version() { return "1.3.2-pre1"; }
40+
grpc::string Version() { return "1.3.2"; }
4141
}
+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>1.3.2-pre1</GrpcCsharpVersion>
4+
<GrpcCsharpVersion>1.3.2</GrpcCsharpVersion>
55
<GoogleProtobufVersion>3.2.0</GoogleProtobufVersion>
66
</PropertyGroup>
77
</Project>

src/csharp/Grpc.Core/VersionInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ public static class VersionInfo
5353
/// <summary>
5454
/// Current version of gRPC C#
5555
/// </summary>
56-
public const string CurrentVersion = "1.3.2-pre1";
56+
public const string CurrentVersion = "1.3.2";
5757
}
5858
}

src/csharp/build_packages_dotnetcli.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
@rem OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929

3030
@rem Current package versions
31-
set VERSION=1.3.2-pre1
31+
set VERSION=1.3.2
3232

3333
@rem Adjust the location of nuget.exe
3434
set NUGET=C:\nuget\nuget.exe

src/csharp/build_packages_dotnetcli.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dotnet pack --configuration Release --include-symbols --include-source Grpc.Auth
7070
dotnet pack --configuration Release --include-symbols --include-source Grpc.HealthCheck --output ../../../artifacts
7171
dotnet pack --configuration Release --include-symbols --include-source Grpc.Reflection --output ../../../artifacts
7272

73-
nuget pack Grpc.nuspec -Version "1.3.2-pre1" -OutputDirectory ../../artifacts
74-
nuget pack Grpc.Tools.nuspec -Version "1.3.2-pre1" -OutputDirectory ../../artifacts
73+
nuget pack Grpc.nuspec -Version "1.3.2" -OutputDirectory ../../artifacts
74+
nuget pack Grpc.Tools.nuspec -Version "1.3.2" -OutputDirectory ../../artifacts
7575

7676
(cd ../../artifacts && zip csharp_nugets_dotnetcli.zip *.nupkg)

src/node/health_check/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grpc-health-check",
3-
"version": "1.3.2-pre1",
3+
"version": "1.3.2",
44
"author": "Google Inc.",
55
"description": "Health check service for use with gRPC",
66
"repository": {
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"dependencies": {
18-
"grpc": "^1.3.2-pre1",
18+
"grpc": "^1.3.2",
1919
"lodash": "^3.9.3",
2020
"google-protobuf": "^3.0.0"
2121
},

src/node/tools/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grpc-tools",
3-
"version": "1.3.2-pre1",
3+
"version": "1.3.2",
44
"author": "Google Inc.",
55
"description": "Tools for developing with gRPC on Node.js",
66
"homepage": "http://www.grpc.io/",

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.3.2-pre1'
45+
v = '1.3.2'
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/private/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
// `tools/buildgen/generate_projects.sh`.
3939

4040

41-
#define GRPC_OBJC_VERSION_STRING @"1.3.2-pre1"
41+
#define GRPC_OBJC_VERSION_STRING @"1.3.2"

src/python/grpcio/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929

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

32-
VERSION='1.3.2rc1'
32+
VERSION='1.3.2'

src/python/grpcio_health_checking/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929

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

32-
VERSION='1.3.2rc1'
32+
VERSION='1.3.2'

src/python/grpcio_reflection/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929

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

32-
VERSION='1.3.2rc1'
32+
VERSION='1.3.2'

src/python/grpcio_tests/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929

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

32-
VERSION='1.3.2rc1'
32+
VERSION='1.3.2'

src/ruby/lib/grpc/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929

3030
# GRPC contains the General RPC module.
3131
module GRPC
32-
VERSION = '1.3.2.pre1'
32+
VERSION = '1.3.2'
3333
end

src/ruby/tools/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929

3030
module GRPC
3131
module Tools
32-
VERSION = '1.3.2.pre1'
32+
VERSION = '1.3.2'
3333
end
3434
end

tools/distrib/python/grpcio_tools/grpc_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929

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

32-
VERSION='1.3.2rc1'
32+
VERSION='1.3.2'

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.3.2-pre1
43+
PROJECT_NUMBER = 1.3.2
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.3.2-pre1
43+
PROJECT_NUMBER = 1.3.2
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)