aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Daoust <markdaoust@google.com>2024-03-04 16:28:47 -0800
committerGitHub <noreply@github.com>2024-03-04 16:28:47 -0800
commit152a11beb4fe3ce7c45d022ea5901d861005d2c4 (patch)
treeeacf15ffc714af7d83dfc488392ae9da1de7b8a1
parentf1b3d800745bbb7339c0ac3e76585503df6c89e8 (diff)
parent1196a061096a9e82ff130e91a69ad4defd423879 (diff)
downloadtensorflow-152a11beb4fe3ce7c45d022ea5901d861005d2c4.tar.gz
Merge branch 'r2.16' into MarkDaoust-2.16-release-notes
-rw-r--r--RELEASE.md6
-rw-r--r--tensorflow/core/public/version.h4
-rw-r--r--tensorflow/tensorflow.bzl2
-rw-r--r--tensorflow/tools/pip_package/setup.py2
-rw-r--r--tensorflow/tools/pip_package/v2/setup.py2
5 files changed, 9 insertions, 7 deletions
diff --git a/RELEASE.md b/RELEASE.md
index c4a599f9956..f8f6d88625a 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -1,4 +1,4 @@
-# Release 2.16.0
+# Release 2.16.1
## TensorFlow
@@ -26,7 +26,9 @@
1. Change the keras import: replace `import tensorflow.keras as keras` or `import keras` with `import tf_keras as keras`. Update any `tf.keras` references to `keras`.
-* **Apple Silicon users:** If you previously installed TensorFlow using `pip install tensorflow-macos`, please update your installation method. Use `pip install tensorflow` from now on. Starting with TF 2.17, the `tensorflow-macos` package will no longer receive updates.
+* **Apple Silicon users:** If you previously installed TensorFlow using `pip install tensorflow-macos`, please update your installation method. Use `pip install tensorflow` from now on.
+* **Mac x86 users:** Mac x86 builds are being deprecated and will no longer be
+ released as a Pip package from TF 2.17 onwards.
### Known Caveats
diff --git a/tensorflow/core/public/version.h b/tensorflow/core/public/version.h
index f81004f6652..d36e2fa5a0f 100644
--- a/tensorflow/core/public/version.h
+++ b/tensorflow/core/public/version.h
@@ -22,11 +22,11 @@ limitations under the License.
// tensorflow/tools/pip_package/setup.py
#define TF_MAJOR_VERSION 2
#define TF_MINOR_VERSION 16
-#define TF_PATCH_VERSION 0
+#define TF_PATCH_VERSION 1
// 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 ""
#define TF_STR_HELPER(x) #x
#define TF_STR(x) TF_STR_HELPER(x)
diff --git a/tensorflow/tensorflow.bzl b/tensorflow/tensorflow.bzl
index 45c597b3ef4..51ae807cae7 100644
--- a/tensorflow/tensorflow.bzl
+++ b/tensorflow/tensorflow.bzl
@@ -82,7 +82,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 = "2.16.0"
+VERSION = "2.16.1"
VERSION_MAJOR = VERSION.split(".")[0]
two_gpu_tags = ["requires-gpu-nvidia:2", "manual", "no_pip"]
diff --git a/tensorflow/tools/pip_package/setup.py b/tensorflow/tools/pip_package/setup.py
index e2c71d2f83f..cdec9d3a783 100644
--- a/tensorflow/tools/pip_package/setup.py
+++ b/tensorflow/tools/pip_package/setup.py
@@ -48,7 +48,7 @@ from setuptools.dist import Distribution
# result for pip.
# Also update tensorflow/tensorflow.bzl and
# tensorflow/core/public/version.h
-_VERSION = '2.16.0-rc0'
+_VERSION = '2.16.1'
# We use the same setup.py for all tensorflow_* packages and for the nightly
diff --git a/tensorflow/tools/pip_package/v2/setup.py b/tensorflow/tools/pip_package/v2/setup.py
index 53a1eb4e1c5..235f412cae9 100644
--- a/tensorflow/tools/pip_package/v2/setup.py
+++ b/tensorflow/tools/pip_package/v2/setup.py
@@ -48,7 +48,7 @@ from setuptools.dist import Distribution
# result for pip.
# Also update tensorflow/tensorflow.bzl and
# tensorflow/core/public/version.h
-_VERSION = '2.16.0-rc0'
+_VERSION = '2.16.1'
# We use the same setup.py for all tensorflow_* packages and for the nightly