From e4c4b20805064c67ea624cdedf3f295ea1ee800d Mon Sep 17 00:00:00 2001 From: Austin Anderson Date: Fri, 14 Sep 2018 12:38:07 -0700 Subject: [PATCH] Update 1.11.0-rc0 version strings to 1.11.0-rc1 (#22284) --- tensorflow/core/public/version.h | 2 +- tensorflow/tools/pip_package/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/core/public/version.h b/tensorflow/core/public/version.h index 1f71e24eebb..b043a694318 100644 --- a/tensorflow/core/public/version.h +++ b/tensorflow/core/public/version.h @@ -24,7 +24,7 @@ limitations under the License. // TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1", // "-beta", "-rc", "-rc.1") -#define TF_VERSION_SUFFIX "-rc0" +#define TF_VERSION_SUFFIX "-rc1" #define TF_STR_HELPER(x) #x #define TF_STR(x) TF_STR_HELPER(x) diff --git a/tensorflow/tools/pip_package/setup.py b/tensorflow/tools/pip_package/setup.py index 8442e58f205..d40ffb8cd07 100644 --- a/tensorflow/tools/pip_package/setup.py +++ b/tensorflow/tools/pip_package/setup.py @@ -45,7 +45,7 @@ DOCLINES = __doc__.split('\n') # This version string is semver compatible, but incompatible with pip. # For pip, we will remove all '-' characters from this string, and use the # result for pip. -_VERSION = '1.11.0-rc0' +_VERSION = '1.11.0-rc1' REQUIRED_PACKAGES = [ 'absl-py >= 0.1.6', -- GitLab