Skip to content

Commit b5a11f1

Browse files
Merge pull request #1465 from shadowdragon89/releng_20191018_154033
Update version for 2.0.0 release.
2 parents 1bdd349 + d6d6145 commit b5a11f1

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
@@ -10,8 +10,8 @@ workspace(name = "tf_serving")
1010
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1111
tensorflow_http_archive(
1212
name = "org_tensorflow",
13-
sha256 = "b4203ed72a321915e405cf55f4679c6997afe71036bd91dbde090c332fc3fd86",
14-
git_commit = "439bf24ed7f6d04a267c307f3aaaab1ce523aab7",
13+
sha256 = "b38de3408a4190246f2814dd7388cec72807b736fbcef5087e3b86a3f179bb0f",
14+
git_commit = "64c3d382cadf7bbe8e7e99884bede8284ff67f56",
1515
)
1616

1717
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
@@ -470,7 +470,7 @@ pkg_deb(
470470
homepage = "https://github.com/tensorflow/serving",
471471
maintainer = "TensorFlow Serving team",
472472
package = "tensorflow-model-server",
473-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
473+
version = "2.0.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
474474
)
475475

476476
# Build with '-c opt'
@@ -481,5 +481,5 @@ pkg_deb(
481481
homepage = "https://github.com/tensorflow/serving",
482482
maintainer = "TensorFlow Serving team",
483483
package = "tensorflow-model-server-universal",
484-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
484+
version = "2.0.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
485485
)

tensorflow_serving/model_servers/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ 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
25+
#define TF_MODELSERVER_MAJOR_VERSION 2
2626
#define TF_MODELSERVER_MINOR_VERSION 0
2727
#define TF_MODELSERVER_PATCH_VERSION 0
2828
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases

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 = '0.0.0'
34+
_VERSION = '2.0.0'
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.0.0'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)