Skip to content

Commit fd92d2f

Browse files
authored
Merge pull request #1260 from lilao/releng_20190213_114258
Update version for 1.13.0-rc1 release.
2 parents dd192ea + 6360e9a commit fd92d2f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

WORKSPACE

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1111

1212
tensorflow_http_archive(
1313
name = "org_tensorflow",
14-
sha256 = "e28ff36cbffde740421eff54804b1e79c7f95e2eeda04b765227242c41ac9ebf",
15-
git_commit = "768844843859a721888fd325b2f9b361e09d58b1",
14+
sha256 = "8ba460e7cc1d896105df4fee910f7b1fb29966575dd2a2385aa4296064a2a2e0",
15+
git_commit = "63c13ff9b330682d136bc9219fa658f589b639f4",
1616
)
1717

1818
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ pkg_deb(
454454
homepage = "https://github.com/tensorflow/serving",
455455
maintainer = "TensorFlow Serving team",
456456
package = "tensorflow-model-server",
457-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
457+
version = "1.13.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
458458
)
459459

460460
# Build with '-c opt'
@@ -465,5 +465,5 @@ pkg_deb(
465465
homepage = "https://github.com/tensorflow/serving",
466466
maintainer = "TensorFlow Serving team",
467467
package = "tensorflow-model-server-universal",
468-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
468+
version = "1.13.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
469469
)

tensorflow_serving/model_servers/version.h

+3-3
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 1
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 "-rc1"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
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 = '1.13.0-rc1'
3535

3636
project_name = 'tensorflow-serving-api'
3737
# Set when building the pip package

0 commit comments

Comments
 (0)