diff --git a/RELEASE.md b/RELEASE.md index 5519197010b..4db401cfada 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,8 @@ +# Release 1.15.7 + +## Bug Fixes and Other Changes +* Fix version strings that hadn't been updated for the previous release + # Release 1.15.6 ## Bug Fixes and Other Changes diff --git a/tensorflow/core/public/version.h b/tensorflow/core/public/version.h index ee18b61b743..42e386e864f 100644 --- a/tensorflow/core/public/version.h +++ b/tensorflow/core/public/version.h @@ -22,7 +22,7 @@ limitations under the License. // tensorflow/tools/pip_package/setup.py #define TF_MAJOR_VERSION 1 #define TF_MINOR_VERSION 15 -#define TF_PATCH_VERSION 5 +#define TF_PATCH_VERSION 7 // TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1", // "-beta", "-rc", "-rc.1") diff --git a/tensorflow/tensorflow.bzl b/tensorflow/tensorflow.bzl index 6ae04eed256..81cb53ca073 100644 --- a/tensorflow/tensorflow.bzl +++ b/tensorflow/tensorflow.bzl @@ -62,7 +62,7 @@ def register_extension_info(**kwargs): # not contain rc or alpha, only numbers. # Also update tensorflow/core/public/version.h # and tensorflow/tools/pip_package/setup.py -VERSION = "1.15.6" +VERSION = "1.15.7" VERSION_MAJOR = VERSION.split(".")[0] def if_v2(a): diff --git a/tensorflow/tools/pip_package/setup.py b/tensorflow/tools/pip_package/setup.py index 0c8c69777e5..9cfde63816f 100644 --- a/tensorflow/tools/pip_package/setup.py +++ b/tensorflow/tools/pip_package/setup.py @@ -52,7 +52,7 @@ # result for pip. # Also update tensorflow/tensorflow.bzl and # tensorflow/core/public/version.h -_VERSION = '1.15.6.dev0' +_VERSION = '1.15.7' REQUIRED_PACKAGES = [ 'absl-py >= 0.7.0',