Skip to content

Commit 494ce6e

Browse files
committed
Update version
1 parent d49b507 commit 494ce6e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

WORKSPACE

+3-3
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.18.0-rc0",
60-
sha256 = "4c0d58d4516c7cebab91318cb1ed2e5585f772b7ee4f081958df764b4c616422",
59+
strip_prefix = "tensorflow-2.18.0",
60+
sha256 = "d55768075e7568f02748768f4bc43159370170c18d0da21e9535007c61452d50",
6161
urls = [
62-
"https://github.com/tensorflow/tensorflow/archive/v2.18.0-rc0.zip"
62+
"https://github.com/tensorflow/tensorflow/archive/v2.18.0.zip"
6363
],
6464
)
6565

oss_scripts/configure.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ else
4141
if is_macos; then
4242
# Only Apple Silicon will be installed with tensorflow-macos.
4343
if [[ x"$(arch)" == x"arm64" ]]; then
44-
pip install tensorflow==2.18.0rc0
44+
pip install tensorflow==2.18.0
4545
else
46-
pip install tensorflow==2.18.0rc0
46+
pip install tensorflow==2.18.0
4747
fi
4848
else
49-
pip install tensorflow==2.18.0rc0
49+
pip install tensorflow==2.18.0
5050
fi
5151
fi
5252

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.18.0-rc0'
35+
project_version = '2.18.0'
3636

3737

3838
class BinaryDistribution(Distribution):
@@ -74,12 +74,12 @@ def finalize_options(self):
7474
distclass=BinaryDistribution,
7575
install_requires=[
7676
(
77-
'tensorflow>=2.18.0rc0, <2.19',
77+
'tensorflow>=2.18.0, <2.19',
7878
),
7979
],
8080
extras_require={
8181
'tensorflow_cpu': [
82-
'tensorflow-cpu>=2.18.0rc0, <2.19',
82+
'tensorflow-cpu>=2.18.0, <2.19',
8383
],
8484
'tests': [
8585
'absl-py',

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.18.0-rc0"
113+
__version__ = "2.18.0"

0 commit comments

Comments
 (0)