Skip to content

Commit 80daba4

Browse files
committed
regenerate projects
1 parent 21fe965 commit 80daba4

35 files changed

+41
-41
lines changed

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
cmake_minimum_required(VERSION 3.5.1)
2626

2727
set(PACKAGE_NAME "grpc")
28-
set(PACKAGE_VERSION "1.31.0-dev")
28+
set(PACKAGE_VERSION "1.32.0-dev")
2929
set(gRPC_CORE_VERSION "11.0.0")
3030
set(gRPC_CORE_SOVERSION "11")
31-
set(gRPC_CPP_VERSION "1.31.0-dev")
31+
set(gRPC_CPP_VERSION "1.32.0-dev")
3232
set(gRPC_CPP_SOVERSION "1")
33-
set(gRPC_CSHARP_VERSION "2.31.0-dev")
33+
set(gRPC_CSHARP_VERSION "2.32.0-dev")
3434
set(gRPC_CSHARP_SOVERSION "2")
3535
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
3636
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -450,8 +450,8 @@ Q = @
450450
endif
451451

452452
CORE_VERSION = 11.0.0
453-
CPP_VERSION = 1.31.0-dev
454-
CSHARP_VERSION = 2.31.0-dev
453+
CPP_VERSION = 1.32.0-dev
454+
CSHARP_VERSION = 2.32.0-dev
455455

456456
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
457457
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)

gRPC-C++.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Pod::Spec.new do |s|
2323
s.name = 'gRPC-C++'
2424
# TODO (mxyan): use version that match gRPC version when pod is stabilized
25-
version = '1.31.0-dev'
25+
version = '1.32.0-dev'
2626
s.version = version
2727
s.summary = 'gRPC C++ library'
2828
s.homepage = 'https://grpc.io'

gRPC-Core.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-Core'
24-
version = '1.31.0-dev'
24+
version = '1.32.0-dev'
2525
s.version = version
2626
s.summary = 'Core cross-platform gRPC library, written in C'
2727
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.31.0-dev'
24+
version = '1.32.0-dev'
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.31.0-dev'
24+
version = '1.32.0-dev'
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.31.0-dev'
23+
version = '1.32.0-dev'
2424
s.version = version
2525
s.summary = 'gRPC client library for iOS/OSX'
2626
s.homepage = 'https://grpc.io'

package.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
<date>2019-09-24</date>
1414
<time>16:06:07</time>
1515
<version>
16-
<release>1.31.0dev</release>
17-
<api>1.31.0dev</api>
16+
<release>1.32.0dev</release>
17+
<api>1.32.0dev</api>
1818
</version>
1919
<stability>
2020
<release>beta</release>
2121
<api>beta</api>
2222
</stability>
2323
<license>Apache 2.0</license>
2424
<notes>
25-
- gRPC Core 1.31.0 update
25+
- gRPC Core 1.32.0 update
2626
</notes>
2727
<contents>
2828
<dir baseinstalldir="/" name="/">

src/core/lib/surface/version.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
const char* grpc_version_string(void) { return "11.0.0"; }
2727

28-
const char* grpc_g_stands_for(void) { return "galore"; }
28+
const char* grpc_g_stands_for(void) { return "giggle"; }

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-
std::string Version() { return "1.31.0-dev"; }
25+
std::string Version() { return "1.32.0-dev"; }
2626
} // namespace grpc

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ public static class VersionInfo
3333
/// <summary>
3434
/// Current <c>AssemblyFileVersion</c> of gRPC C# assemblies
3535
/// </summary>
36-
public const string CurrentAssemblyFileVersion = "2.31.0.0";
36+
public const string CurrentAssemblyFileVersion = "2.32.0.0";
3737

3838
/// <summary>
3939
/// Current version of gRPC C#
4040
/// </summary>
41-
public const string CurrentVersion = "2.31.0-dev";
41+
public const string CurrentVersion = "2.32.0-dev";
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.31.0-dev</GrpcCsharpVersion>
4+
<GrpcCsharpVersion>2.32.0-dev</GrpcCsharpVersion>
55
<GoogleProtobufVersion>3.12.2</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.31.0-dev
16+
set VERSION=2.32.0-dev
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.31.0-dev'
45+
v = '1.32.0-dev'
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.31.0-dev'
45+
v = '1.32.0-dev'
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.31.0-dev"
25+
#define GRPC_OBJC_VERSION_STRING @"1.32.0-dev"

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.31.0-dev"
25+
#define GRPC_OBJC_VERSION_STRING @"1.32.0-dev"
2626
#define GRPC_C_VERSION_STRING @"11.0.0"

src/php/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "grpc/grpc-dev",
33
"description": "gRPC library for PHP - for Development use only",
44
"license": "Apache-2.0",
5-
"version": "1.31.0",
5+
"version": "1.32.0",
66
"require": {
77
"php": ">=5.5.0",
88
"google/protobuf": "^v3.3.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.31.0dev"
23+
#define PHP_GRPC_VERSION "1.32.0dev"
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.31.0.dev0"""
17+
__version__ = """1.32.0.dev0"""

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.31.0.dev0'
17+
VERSION = '1.32.0.dev0'

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.31.0.dev0'
17+
VERSION = '1.32.0.dev0'

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.31.0.dev0'
17+
VERSION = '1.32.0.dev0'

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.31.0.dev0'
17+
VERSION = '1.32.0.dev0'

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.31.0.dev0'
17+
VERSION = '1.32.0.dev0'

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.31.0.dev0'
17+
VERSION = '1.32.0.dev0'

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.31.0.dev0'
17+
VERSION = '1.32.0.dev0'

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.31.0.dev'
17+
VERSION = '1.32.0.dev'
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.31.0.dev'
17+
VERSION = '1.32.0.dev'
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.31.0.dev0'
17+
VERSION = '1.32.0.dev0'

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.31.0-dev
43+
PROJECT_NUMBER = 1.32.0-dev
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.31.0-dev
43+
PROJECT_NUMBER = 1.32.0-dev
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.31.0-dev
43+
PROJECT_NUMBER = 1.32.0-dev
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.31.0-dev
43+
PROJECT_NUMBER = 1.32.0-dev
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.php

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

43-
PROJECT_NUMBER = 1.31.0-dev
43+
PROJECT_NUMBER = 1.32.0-dev
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)