Skip to content

Commit 84e6a06

Browse files
Merge pull request #1446 from minglotus-6/releng_20190924_115434
Update version for 1.15.0-rc1 release.
2 parents d16ceaf + b406b1f commit 84e6a06

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
@@ -11,8 +11,8 @@ load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1111

1212
tensorflow_http_archive(
1313
name = "org_tensorflow",
14-
sha256 = "b4203ed72a321915e405cf55f4679c6997afe71036bd91dbde090c332fc3fd86",
15-
git_commit = "439bf24ed7f6d04a267c307f3aaaab1ce523aab7",
14+
sha256 = "f9bdef2b86565080acba66d95daddd9b68391ac52e31ad4427ce1ea69c415ca4",
15+
git_commit = "ea930781c3164c9646e26cf3716f86804aa65b63",
1616
)
1717

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

tensorflow_serving/model_servers/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ pkg_deb(
463463
homepage = "https://github.com/tensorflow/serving",
464464
maintainer = "TensorFlow Serving team",
465465
package = "tensorflow-model-server",
466-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
466+
version = "1.15.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
467467
)
468468

469469
# Build with '-c opt'
@@ -474,5 +474,5 @@ pkg_deb(
474474
homepage = "https://github.com/tensorflow/serving",
475475
maintainer = "TensorFlow Serving team",
476476
package = "tensorflow-model-server-universal",
477-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
477+
version = "1.15.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
478478
)

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 1
26+
#define TF_MODELSERVER_MINOR_VERSION 15
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

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)