Skip to content

Commit

Permalink
Merge pull request #1978 from rtg0795/releng_20220209_073623
Browse files Browse the repository at this point in the history
Update version for 2.8.0 release.
  • Loading branch information
rtg0795 authored Feb 9, 2022
2 parents 359baf7 + 2db6a45 commit c62d106
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 = "b3cbbea3fcb1c61e1da22b2be48915b27aebe35bbdc5af25d49d42a6b3178331",
git_commit = "244b9d77fd42003042968a22d0cda6bea0c01435",
sha256 = "21d919ad6d96fcc0477c8d4f7b1f7e4295aaec2986e035551ed263c2b1cd52ee",
git_commit = "3f878cff5b698b82eea85db2b60d65a2e320850e",
)

# 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.8.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.8.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.8.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.8.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.8.0-rc1'
_VERSION = '2.8.0'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.8.0-rc1,<3'
_TF_VERSION = '>=2.8.0,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit c62d106

Please sign in to comment.