Skip to content

Commit

Permalink
Bumping to 1.0.0-pre2.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed Jul 29, 2016
1 parent 18e54a5 commit 3260a17
Show file tree
Hide file tree
Showing 22 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
cmake_minimum_required(VERSION 2.8)

set(PACKAGE_NAME "grpc")
set(PACKAGE_VERSION "1.0.0-pre1")
set(PACKAGE_VERSION "1.0.0-pre2")
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "https://github.com/grpc/grpc/issues/")
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ E = @echo
Q = @
endif

VERSION = 1.0.0-pre1
VERSION = 1.0.0-pre2

CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
Expand Down
2 changes: 1 addition & 1 deletion build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ settings:
'#3': Use "-preN" suffixes to identify pre-release versions
'#4': Per-language overrides are possible with (eg) ruby_version tag here
'#5': See the expand_version.py for all the quirks here
version: 1.0.0-pre1
version: 1.0.0-pre2
filegroups:
- name: census
public_headers:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grpc",
"version": "1.0.0-pre1",
"version": "1.0.0-pre2",
"author": "Google Inc.",
"description": "gRPC Library for Node",
"homepage": "http://www.grpc.io/",
Expand Down
2 changes: 1 addition & 1 deletion src/core/lib/surface/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@

#include <grpc/grpc.h>

const char *grpc_version_string(void) { return "1.0.0-pre1"; }
const char *grpc_version_string(void) { return "1.0.0-pre2"; }
4 changes: 2 additions & 2 deletions src/csharp/Grpc.Auth/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-pre1",
"version": "1.0.0-pre2",
"title": "gRPC C# Auth",
"authors": [ "Google Inc." ],
"copyright": "Copyright 2015, Google Inc.",
Expand All @@ -22,7 +22,7 @@
}
},
"dependencies": {
"Grpc.Core": "1.0.0-pre1",
"Grpc.Core": "1.0.0-pre2",
"Google.Apis.Auth": "1.11.1"
},
"frameworks": {
Expand Down
2 changes: 1 addition & 1 deletion src/csharp/Grpc.Core/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ public static class VersionInfo
/// <summary>
/// Current version of gRPC C#
/// </summary>
public const string CurrentVersion = "1.0.0-pre1";
public const string CurrentVersion = "1.0.0-pre2";
}
}
2 changes: 1 addition & 1 deletion src/csharp/Grpc.Core/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-pre1",
"version": "1.0.0-pre2",
"title": "gRPC C# Core",
"authors": [ "Google Inc." ],
"copyright": "Copyright 2015, Google Inc.",
Expand Down
4 changes: 2 additions & 2 deletions src/csharp/Grpc.HealthCheck/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-pre1",
"version": "1.0.0-pre2",
"title": "gRPC C# Healthchecking",
"authors": [ "Google Inc." ],
"copyright": "Copyright 2015, Google Inc.",
Expand All @@ -22,7 +22,7 @@
}
},
"dependencies": {
"Grpc.Core": "1.0.0-pre1",
"Grpc.Core": "1.0.0-pre2",
"Google.Protobuf": "3.0.0-beta3"
},
"frameworks": {
Expand Down
2 changes: 1 addition & 1 deletion src/csharp/build_packages.bat
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@rem Builds gRPC NuGet packages

@rem Current package versions
set VERSION=1.0.0-pre1
set VERSION=1.0.0-pre2
set PROTOBUF_VERSION=3.0.0-beta3

@rem Packages that depend on prerelease packages (like Google.Protobuf) need to have prerelease suffix as well.
Expand Down
2 changes: 1 addition & 1 deletion src/node/health_check/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grpc-health-check",
"version": "1.0.0-pre1",
"version": "1.0.0-pre2",
"author": "Google Inc.",
"description": "Health check service for use with gRPC",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/node/tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grpc-tools",
"version": "1.0.0-pre1",
"version": "1.0.0-pre2",
"author": "Google Inc.",
"description": "Tools for developing with gRPC on Node.js",
"homepage": "http://www.grpc.io/",
Expand Down
2 changes: 1 addition & 1 deletion src/python/grpcio/grpc_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@

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

VERSION='1.0.0rc1'
VERSION='1.0.0rc2'
2 changes: 1 addition & 1 deletion src/python/grpcio_health_checking/grpc_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@

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

VERSION='1.0.0rc1'
VERSION='1.0.0rc2'
2 changes: 1 addition & 1 deletion src/python/grpcio_tests/grpc_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@

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

VERSION='1.0.0rc1'
VERSION='1.0.0rc2'
2 changes: 1 addition & 1 deletion src/ruby/lib/grpc/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@

# GRPC contains the General RPC module.
module GRPC
VERSION = '1.0.0.pre1'
VERSION = '1.0.0.pre2'
end
2 changes: 1 addition & 1 deletion src/ruby/tools/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@

module GRPC
module Tools
VERSION = '1.0.0.pre1'
VERSION = '1.0.0.pre2'
end
end
2 changes: 1 addition & 1 deletion tools/distrib/python/grpcio_tools/grpc_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@

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

VERSION='1.0.0rc1'
VERSION='1.0.0rc2'
2 changes: 1 addition & 1 deletion tools/doxygen/Doxyfile.c++
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ PROJECT_NAME = "GRPC C++"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 1.0.0-pre1
PROJECT_NUMBER = 1.0.0-pre2
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion tools/doxygen/Doxyfile.c++.internal
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ PROJECT_NAME = "GRPC C++"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.0.0-pre1
PROJECT_NUMBER = 1.0.0-pre2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion tools/doxygen/Doxyfile.core
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ PROJECT_NAME = "GRPC Core"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.0.0-pre1
PROJECT_NUMBER = 1.0.0-pre2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion tools/doxygen/Doxyfile.core.internal
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ PROJECT_NAME = "GRPC Core"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.0.0-pre1
PROJECT_NUMBER = 1.0.0-pre2

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

0 comments on commit 3260a17

Please sign in to comment.