Skip to content

Commit 6147360

Browse files
authored
Update version for 2.13.0-rc2 release. (#2162)
1 parent f863975 commit 6147360

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

WORKSPACE

+2-2
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 = "42fd557b082a34c5714a9daa4015cad47804657fc5b2b4e157c27747fe69c6b2",
28-
git_commit = "57633696be6c5cd93ae6832e81338a31b10428b8",
27+
sha256 = "530dde1d7085634182b17ee5f7c3683b4d1a4531965005ed558110836df7c63d",
28+
git_commit = "5b6abc8a9bb1bbef914a3e830c18e30e4477f036",
2929
)
3030

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

tensorflow_serving/model_servers/BUILD

+2-2
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-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
538+
version = "2.13.0-rc2", # 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-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
549+
version = "2.13.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
550550
)

tensorflow_serving/model_servers/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
2727
#define TF_MODELSERVER_PATCH_VERSION 0
2828
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
2929
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
30-
#define TF_MODELSERVER_VERSION_SUFFIX "-rc1"
30+
#define TF_MODELSERVER_VERSION_SUFFIX "-rc2"
3131

3232
#ifndef TF_MODELSERVER_VERSION_NO_META
3333
// TF_MODELSERVER_BUILD_TAG can be set to be nightly for nightly builds

tensorflow_serving/tools/pip_package/setup.py

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)