Skip to content

Commit

Permalink
Update version for 2.13.0 release. (#2163)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 committed Jul 21, 2023
1 parent 6147360 commit 83c949c
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 @@ -24,8 +24,8 @@ local_repository(
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "530dde1d7085634182b17ee5f7c3683b4d1a4531965005ed558110836df7c63d",
git_commit = "5b6abc8a9bb1bbef914a3e830c18e30e4477f036",
sha256 = "a62eba23ebfcf1d6d2d3241f1629b99df576a9f726c439a97c3acd590e71fe62",
git_commit = "1cb1a030a62b169d90d34c747ab9b09f332bf905",
)

# 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 @@ -535,7 +535,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "2.13.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.13.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -546,5 +546,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.13.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.13.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.13.0-rc2'
_VERSION = '2.13.0'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.13.0-rc2,<3'
_TF_VERSION = '>=2.13.0,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 83c949c

Please sign in to comment.