Skip to content

Commit

Permalink
Update version for 2.7.0 release. (#1936)
Browse files Browse the repository at this point in the history
  • Loading branch information
jay90099 authored Nov 5, 2021
1 parent f4d06b2 commit 462a36f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ workspace(name = "tf_serving")
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "69e9bd96c2339a32fe5b08d6ef5918e7e1638c71db05049cd0601d2bb8e8a7cf",
git_commit = "ff68385595088304cf772086b9a259a65b007622",
sha256 = "ff0df77ec72676d3260502dd19f34518ecd65bb9ead4f7dfdf8bd11cff8640e3",
git_commit = "c256c071bb26e1e13b4666d1b3e229e110bc914a",
)

# Import all of TensorFlow Serving's external dependencies.
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_serving/model_servers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "2.7.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.7.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -501,5 +501,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.7.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.7.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)
4 changes: 2 additions & 2 deletions tensorflow_serving/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
DOCLINES = __doc__.split('\n')

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

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 462a36f

Please sign in to comment.