Skip to content

Commit 02879b2

Browse files
author
no-reply
committed
Update version
1 parent 8f6bcbd commit 02879b2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ http_archive(
7272
name = "org_tensorflow",
7373
patch_args = ["-p1"],
7474
patches = ["//third_party/tensorflow:tf.patch"],
75-
strip_prefix = "tensorflow-2.14.0-rc0",
76-
sha256 = "99c6f486d1b361f1dd6de52df27f5d9c69e114b3540607746b967d1bd2ca16d4",
75+
strip_prefix = "tensorflow-2.14.0",
76+
sha256 = "63418e2ecdac704a6f8aea6f395ccc3677e49b06f839a028e3da9f5115dcd222",
7777
urls = [
78-
"https://github.com/tensorflow/tensorflow/archive/v2.14.0-rc0.zip"
78+
"https://github.com/tensorflow/tensorflow/archive/v2.14.0.zip"
7979
],
8080
)
8181

oss_scripts/configure.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ else
4848
if [[ x"$(arch)" == x"arm64" ]]; then
4949
pip install tensorflow-macos==2.9.0
5050
else
51-
pip install tensorflow==2.14.0rc0
51+
pip install tensorflow==2.14.0
5252
fi
5353
else
54-
pip install tensorflow==2.14.0rc0
54+
pip install tensorflow==2.14.0
5555
fi
5656
fi
5757

oss_scripts/pip_package/setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from setuptools.dist import Distribution
3333

3434
project_name = 'tensorflow-text'
35-
project_version = '2.14.0-rc0'
35+
project_version = '2.14.0'
3636

3737

3838
class BinaryDistribution(Distribution):
@@ -74,11 +74,11 @@ def finalize_options(self):
7474
distclass=BinaryDistribution,
7575
install_requires=[
7676
(
77-
'tensorflow>=2.14.0rc0, <2.15; platform_machine != "arm64" or'
77+
'tensorflow>=2.14.0, <2.15; platform_machine != "arm64" or'
7878
' platform_system != "Darwin"'
7979
),
8080
(
81-
'tensorflow-macos>=2.14.0rc0, <2.15; platform_machine == "arm64" and'
81+
'tensorflow-macos>=2.14.0, <2.15; platform_machine == "arm64" and'
8282
' platform_system == "Darwin"'
8383
),
8484
'tensorflow_hub>=0.13.0',

tensorflow_text/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@
110110
]
111111

112112
remove_undocumented(__name__, _allowed_symbols)
113-
__version__ = "2.14.0-rc0"
113+
__version__ = "2.14.0"

0 commit comments

Comments
 (0)