Skip to content

Commit 713597f

Browse files
committed
Master version bump to 1.7.x
1 parent f1ab113 commit 713597f

33 files changed

Lines changed: 42 additions & 40 deletions

BUILD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ load(
3434
)
3535

3636
# This should be updated along with build.yaml
37-
g_stands_for = "gregarious"
37+
g_stands_for = "gambit"
3838

3939
core_version = "4.0.0-dev"
4040

41-
version = "1.5.0-dev"
41+
version = "1.7.0-dev"
4242

4343
GPR_PUBLIC_HDRS = [
4444
"include/grpc/support/alloc.h",
@@ -593,9 +593,9 @@ grpc_cc_library(
593593
"src/core/lib/iomgr/ev_windows.c",
594594
"src/core/lib/iomgr/exec_ctx.c",
595595
"src/core/lib/iomgr/executor.c",
596+
"src/core/lib/iomgr/gethostname_fallback.c",
596597
"src/core/lib/iomgr/gethostname_host_name_max.c",
597598
"src/core/lib/iomgr/gethostname_sysconf.c",
598-
"src/core/lib/iomgr/gethostname_fallback.c",
599599
"src/core/lib/iomgr/iocp_windows.c",
600600
"src/core/lib/iomgr/iomgr.c",
601601
"src/core/lib/iomgr/iomgr_posix.c",

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
cmake_minimum_required(VERSION 2.8)
2525

2626
set(PACKAGE_NAME "grpc")
27-
set(PACKAGE_VERSION "1.5.0-dev")
27+
set(PACKAGE_VERSION "1.7.0-dev")
2828
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
2929
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
3030
set(PACKAGE_BUGREPORT "https://github.com/grpc/grpc/issues/")

Makefile

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

413413
CORE_VERSION = 4.0.0-dev
414-
CPP_VERSION = 1.5.0-dev
415-
CSHARP_VERSION = 1.5.0-dev
414+
CPP_VERSION = 1.7.0-dev
415+
CSHARP_VERSION = 1.7.0-dev
416416

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

build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ settings:
1313
'#09': Per-language overrides are possible with (eg) ruby_version tag here
1414
'#10': See the expand_version.py for all the quirks here
1515
core_version: 4.0.0-dev
16-
g_stands_for: gregarious
17-
version: 1.5.0-dev
16+
g_stands_for: gambit
17+
version: 1.7.0-dev
1818
filegroups:
1919
- name: census
2020
public_headers:

doc/g_stands_for.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ future), and the corresponding version numbers that used them:
99
- 1.2 'g' stands for 'green'
1010
- 1.3 'g' stands for 'gentle'
1111
- 1.4 'g' stands for 'gregarious'
12+
- 1.6 'g' stands for 'garcia'
13+
- 1.7 'g' stands for 'gambit'

gRPC-Core.podspec

Lines changed: 1 addition & 1 deletion
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.5.0-dev'
25+
version = '1.7.0-dev'
2626
s.version = version
2727
s.summary = 'Core cross-platform gRPC library, written in C'
2828
s.homepage = 'https://grpc.io'

gRPC-ProtoRPC.podspec

Lines changed: 1 addition & 1 deletion
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.5.0-dev'
24+
version = '1.7.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

Lines changed: 1 addition & 1 deletion
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.5.0-dev'
24+
version = '1.7.0-dev'
2525
s.version = version
2626
s.summary = 'Reactive Extensions library for iOS/OSX.'
2727
s.homepage = 'https://grpc.io'

gRPC.podspec

Lines changed: 1 addition & 1 deletion
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.5.0-dev'
23+
version = '1.7.0-dev'
2424
s.version = version
2525
s.summary = 'gRPC client library for iOS/OSX'
2626
s.homepage = 'https://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.5.0-dev",
3+
"version": "1.7.0-dev",
44
"author": "Google Inc.",
55
"description": "gRPC Library for Node",
66
"homepage": "https://grpc.io/",

0 commit comments

Comments
 (0)