diff --git a/WORKSPACE b/WORKSPACE index e52b8e230..90450a86c 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -72,10 +72,10 @@ http_archive( name = "org_tensorflow", patch_args = ["-p1"], patches = ["//third_party/tensorflow:tf.patch"], - strip_prefix = "tensorflow-2.14.0-rc0", - sha256 = "99c6f486d1b361f1dd6de52df27f5d9c69e114b3540607746b967d1bd2ca16d4", + strip_prefix = "tensorflow-2.14.0", + sha256 = "63418e2ecdac704a6f8aea6f395ccc3677e49b06f839a028e3da9f5115dcd222", urls = [ - "https://github.com/tensorflow/tensorflow/archive/v2.14.0-rc0.zip" + "https://github.com/tensorflow/tensorflow/archive/v2.14.0.zip" ], ) diff --git a/oss_scripts/configure.sh b/oss_scripts/configure.sh index af21bdb90..63839d3fa 100755 --- a/oss_scripts/configure.sh +++ b/oss_scripts/configure.sh @@ -48,10 +48,10 @@ else if [[ x"$(arch)" == x"arm64" ]]; then pip install tensorflow-macos==2.9.0 else - pip install tensorflow==2.14.0rc0 + pip install tensorflow==2.14.0 fi else - pip install tensorflow==2.14.0rc0 + pip install tensorflow==2.14.0 fi fi diff --git a/oss_scripts/pip_package/setup.py b/oss_scripts/pip_package/setup.py index 552305d2f..0f1aa283f 100644 --- a/oss_scripts/pip_package/setup.py +++ b/oss_scripts/pip_package/setup.py @@ -32,7 +32,7 @@ from setuptools.dist import Distribution project_name = 'tensorflow-text' -project_version = '2.14.0-rc0' +project_version = '2.14.0' class BinaryDistribution(Distribution): @@ -74,11 +74,11 @@ def finalize_options(self): distclass=BinaryDistribution, install_requires=[ ( - 'tensorflow>=2.14.0rc0, <2.15; platform_machine != "arm64" or' + 'tensorflow>=2.14.0, <2.15; platform_machine != "arm64" or' ' platform_system != "Darwin"' ), ( - 'tensorflow-macos>=2.14.0rc0, <2.15; platform_machine == "arm64" and' + 'tensorflow-macos>=2.14.0, <2.15; platform_machine == "arm64" and' ' platform_system == "Darwin"' ), 'tensorflow_hub>=0.13.0', diff --git a/tensorflow_text/__init__.py b/tensorflow_text/__init__.py index 8afff26e5..95c72c094 100644 --- a/tensorflow_text/__init__.py +++ b/tensorflow_text/__init__.py @@ -110,4 +110,4 @@ ] remove_undocumented(__name__, _allowed_symbols) -__version__ = "2.14.0-rc0" +__version__ = "2.14.0"