Skip to content

Commit 83c949c

Browse files
authored
Update version for 2.13.0 release. (#2163)
1 parent 6147360 commit 83c949c

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
@@ -24,8 +24,8 @@ local_repository(
2424
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
2525
tensorflow_http_archive(
2626
name = "org_tensorflow",
27-
sha256 = "530dde1d7085634182b17ee5f7c3683b4d1a4531965005ed558110836df7c63d",
28-
git_commit = "5b6abc8a9bb1bbef914a3e830c18e30e4477f036",
27+
sha256 = "a62eba23ebfcf1d6d2d3241f1629b99df576a9f726c439a97c3acd590e71fe62",
28+
git_commit = "1cb1a030a62b169d90d34c747ab9b09f332bf905",
2929
)
3030

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

541541
# Build with '-c opt'
@@ -546,5 +546,5 @@ pkg_deb(
546546
homepage = "https://github.com/tensorflow/serving",
547547
maintainer = "TensorFlow Serving team",
548548
package = "tensorflow-model-server-universal",
549-
version = "2.13.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
549+
version = "2.13.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
550550
)

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.13.0-rc2'
34+
_VERSION = '2.13.0'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.13.0-rc2,<3'
36+
_TF_VERSION = '>=2.13.0,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)