Skip to content

Commit 798a44f

Browse files
committed
Update Version for 2.19.0
1 parent 11a92b6 commit 798a44f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ http_archive(
5656

5757
http_archive(
5858
name = "org_tensorflow",
59-
strip_prefix = "tensorflow-2.19.0-rc0",
60-
sha256 = "cc6ca2e1cb326b2b85329a7480813aa69be901f512ba7a08fca852e8eb0ca8f8",
59+
strip_prefix = "tensorflow-2.19.0",
60+
sha256 = "c86c09eeec97253fa02cd65733042b1e77dcb9a90cffbe75b6d53e7d0653af3a",
6161
urls = [
62-
"https://github.com/tensorflow/tensorflow/archive/v2.19.0-rc0.zip"
62+
"https://github.com/tensorflow/tensorflow/archive/v2.19.0.zip"
6363
],
6464
)
6565

oss_scripts/configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ else
4141
if [[ "$IS_NIGHTLY" == "nightly" ]]; then
4242
pip install tf-nightly
4343
else
44-
pip install tensorflow==2.19.0-rc0
44+
pip install tensorflow==2.19.0
4545
fi
4646
fi
4747

oss_scripts/pip_package/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
from setuptools.dist import Distribution
4747

4848
project_name = 'tensorflow-text'
49-
project_version = '2.19.0-rc0'
49+
project_version = '2.19.0'
5050

5151

5252
class BinaryDistribution(Distribution):
@@ -88,12 +88,12 @@ def finalize_options(self):
8888
distclass=BinaryDistribution,
8989
install_requires=[
9090
(
91-
'tensorflow>=2.19.0rc0, <2.20',
91+
'tensorflow>=2.19.0, <2.20',
9292
),
9393
],
9494
extras_require={
9595
'tensorflow_cpu': [
96-
'tensorflow-cpu>=2.19.0rc0, <2.20',
96+
'tensorflow-cpu>=2.19.0, <2.20',
9797
],
9898
'tests': [
9999
'absl-py',

tensorflow_text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@
110110
]
111111

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

0 commit comments

Comments
 (0)