File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ workspace(name = "tf_serving")
10
10
load ("//tensorflow_serving:repo.bzl" , "tensorflow_http_archive" )
11
11
tensorflow_http_archive (
12
12
name = "org_tensorflow" ,
13
- sha256 = "b4203ed72a321915e405cf55f4679c6997afe71036bd91dbde090c332fc3fd86 " ,
14
- git_commit = "439bf24ed7f6d04a267c307f3aaaab1ce523aab7 " ,
13
+ sha256 = "b38de3408a4190246f2814dd7388cec72807b736fbcef5087e3b86a3f179bb0f " ,
14
+ git_commit = "64c3d382cadf7bbe8e7e99884bede8284ff67f56 " ,
15
15
)
16
16
17
17
load ("@bazel_tools//tools/build_defs/repo:http.bzl" , "http_archive" )
Original file line number Diff line number Diff line change @@ -470,7 +470,7 @@ pkg_deb(
470
470
homepage = "https://github.com/tensorflow/serving" ,
471
471
maintainer = "TensorFlow Serving team" ,
472
472
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).
474
474
)
475
475
476
476
# Build with '-c opt'
@@ -481,5 +481,5 @@ pkg_deb(
481
481
homepage = "https://github.com/tensorflow/serving" ,
482
482
maintainer = "TensorFlow Serving team" ,
483
483
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).
485
485
)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ limitations under the License.
22
22
#define TF_MODELSERVER_STR_HELPER (x ) #x
23
23
#define TF_MODELSERVER_STR (x ) TF_MODELSERVER_STR_HELPER(x)
24
24
25
- #define TF_MODELSERVER_MAJOR_VERSION 0
25
+ #define TF_MODELSERVER_MAJOR_VERSION 2
26
26
#define TF_MODELSERVER_MINOR_VERSION 0
27
27
#define TF_MODELSERVER_PATCH_VERSION 0
28
28
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
Original file line number Diff line number Diff line change 31
31
DOCLINES = __doc__ .split ('\n ' )
32
32
33
33
# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
34
- _VERSION = '0 .0.0'
34
+ _VERSION = '2 .0.0'
35
35
# 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 '
37
37
_TF_VERSION_SANITIZED = _TF_VERSION .replace ('-' , '' )
38
38
39
39
project_name = 'tensorflow-serving-api'
You can’t perform that action at this time.
0 commit comments