Skip to content

Commit f16602a

Browse files
committed
Update version
1 parent cda7246 commit f16602a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ http_archive(
6262

6363
http_archive(
6464
name = "org_tensorflow",
65-
strip_prefix = "tensorflow-2.7.0-rc0",
66-
sha256 = "6b31d38c3a408bebe746dfecbc073eb68e6de38046fde40067a4eef9abddf25c",
65+
strip_prefix = "tensorflow-2.7.0",
66+
sha256 = "249b48ddee927801c7a4f8e5442cf1a3c860f6f46b85a2ff7a78b501507dd561",
6767
urls = [
68-
"https://github.com/tensorflow/tensorflow/archive/v2.7.0-rc0.zip"
68+
"https://github.com/tensorflow/tensorflow/archive/v2.7.0.zip"
6969
],
7070
)
7171

oss_scripts/configure.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if [[ $(pip show tensorflow) == *tensorflow* ]] || [[ $(pip show tf-nightly) ==
4141
echo 'Using installed tensorflow.'
4242
else
4343
echo 'Installing tensorflow.'
44-
pip install tensorflow==2.7.0rc0
44+
pip install tensorflow==2.7.0
4545
fi
4646

4747
if is_windows; then

oss_scripts/pip_package/setup.py

+1-1
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.7.0-rc0'
35+
project_version = '2.7.0-rc1'
3636

3737

3838
class BinaryDistribution(Distribution):

tensorflow_text/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@
8080
]
8181

8282
remove_undocumented(__name__, _allowed_symbols)
83-
__version__ = "2.7.0-rc0"
83+
__version__ = "2.7.0-rc1"

0 commit comments

Comments
 (0)