Skip to content

Commit 3e30832

Browse files
committed
bump v1.2.x branch to 1.2.1-pre1
1 parent e2cfe9d commit 3e30832

File tree

32 files changed

+41
-41
lines changed

32 files changed

+41
-41
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
cmake_minimum_required(VERSION 2.8)
4343

4444
set(PACKAGE_NAME "grpc")
45-
set(PACKAGE_VERSION "1.2.0")
45+
set(PACKAGE_VERSION "1.2.1-pre1")
4646
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
4747
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
4848
set(PACKAGE_BUGREPORT "https://github.com/grpc/grpc/issues/")

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,8 @@ Q = @
412412
endif
413413

414414
CORE_VERSION = 3.0.0-dev
415-
CPP_VERSION = 1.2.0
416-
CSHARP_VERSION = 1.2.0
415+
CPP_VERSION = 1.2.1-pre1
416+
CSHARP_VERSION = 1.2.1-pre1
417417

418418
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
419419
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)

build.yaml

Lines changed: 1 addition & 1 deletion
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-dev
1616
g_stands_for: green
17-
version: 1.2.0
17+
version: 1.2.1-pre1
1818
filegroups:
1919
- name: census
2020
public_headers:

gRPC-Core.podspec

Lines changed: 1 addition & 1 deletion
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.2.0'
40+
version = '1.2.1-pre1'
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

Lines changed: 1 addition & 1 deletion
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.2.0'
39+
version = '1.2.1-pre1'
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

Lines changed: 1 addition & 1 deletion
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.2.0'
39+
version = '1.2.1-pre1'
4040
s.version = version
4141
s.summary = 'Reactive Extensions library for iOS/OSX.'
4242
s.homepage = 'http://www.grpc.io'

gRPC.podspec

Lines changed: 1 addition & 1 deletion
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.2.0'
38+
version = '1.2.1-pre1'
3939
s.version = version
4040
s.summary = 'gRPC client library for iOS/OSX'
4141
s.homepage = 'http://www.grpc.io'

package.json

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

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<date>2017-03-01</date>
1414
<time>16:06:07</time>
1515
<version>
16-
<release>1.2.0</release>
17-
<api>1.2.0</api>
16+
<release>1.2.1RC1</release>
17+
<api>1.2.1RC1</api>
1818
</version>
1919
<stability>
2020
<release>beta</release>

src/cpp/common/version_cc.cc

Lines changed: 1 addition & 1 deletion
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.2.0"; }
40+
grpc::string Version() { return "1.2.1-pre1"; }
4141
}

0 commit comments

Comments
 (0)