Skip to content

Commit 462a36f

Browse files
authored
Update version for 2.7.0 release. (#1936)
1 parent f4d06b2 commit 462a36f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ workspace(name = "tf_serving")
1515
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1616
tensorflow_http_archive(
1717
name = "org_tensorflow",
18-
sha256 = "69e9bd96c2339a32fe5b08d6ef5918e7e1638c71db05049cd0601d2bb8e8a7cf",
19-
git_commit = "ff68385595088304cf772086b9a259a65b007622",
18+
sha256 = "ff0df77ec72676d3260502dd19f34518ecd65bb9ead4f7dfdf8bd11cff8640e3",
19+
git_commit = "c256c071bb26e1e13b4666d1b3e229e110bc914a",
2020
)
2121

2222
# Import all of TensorFlow Serving's external dependencies.

tensorflow_serving/model_servers/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ pkg_deb(
490490
homepage = "https://github.com/tensorflow/serving",
491491
maintainer = "TensorFlow Serving team",
492492
package = "tensorflow-model-server",
493-
version = "2.7.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
493+
version = "2.7.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
494494
)
495495

496496
# Build with '-c opt'
@@ -501,5 +501,5 @@ pkg_deb(
501501
homepage = "https://github.com/tensorflow/serving",
502502
maintainer = "TensorFlow Serving team",
503503
package = "tensorflow-model-server-universal",
504-
version = "2.7.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
504+
version = "2.7.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
505505
)

tensorflow_serving/tools/pip_package/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
DOCLINES = __doc__.split('\n')
3232

3333
# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
34-
_VERSION = '2.7.0-rc1'
34+
_VERSION = '2.7.0'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.7.0-rc1,<3'
36+
_TF_VERSION = '>=2.7.0,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)