Skip to content

Commit f449ae3

Browse files
authored
Update version for 2.13.0-rc0 release. (#2151)
1 parent 663b375 commit f449ae3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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 = "4d4f15fa4e52f7c77a1793656f85d260225e2638aee34a9c7625583e0608265c",
28-
git_commit = "332077006a5ed7004ee19fbae306768f8f500ca8",
27+
sha256 = "a5a25eeff4c135bce0d99a8fe90a51bac6b25b6cfaea68c080424a63bce44642",
28+
git_commit = "525da8a93eca846e32e5c41eddc0496b25a2ef5b",
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 = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
538+
version = "2.13.0-rc0", # 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 = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
549+
version = "2.13.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
550550
)

tensorflow_serving/model_servers/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ limitations under the License.
2222
#define TF_MODELSERVER_STR_HELPER(x) #x
2323
#define TF_MODELSERVER_STR(x) TF_MODELSERVER_STR_HELPER(x)
2424

25-
#define TF_MODELSERVER_MAJOR_VERSION 0
26-
#define TF_MODELSERVER_MINOR_VERSION 0
25+
#define TF_MODELSERVER_MAJOR_VERSION 2
26+
#define TF_MODELSERVER_MINOR_VERSION 13
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 ""
30+
#define TF_MODELSERVER_VERSION_SUFFIX "-rc0"
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

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)