Skip to content

Commit ead37b6

Browse files
authored
Merge pull request #1594 from nrobeR/releng_20200407_175550
Update version for 2.2.0-rc0 release.
2 parents c2e17f1 + ecf3328 commit ead37b6

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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 = "06c92078a88b21cd4af89e46e65fc62896c3d46574ac92f6a635d4141b19aa00",
15-
git_commit = "fc94412b3921ba38e763438b2eedf30da596ed1c",
14+
sha256 = "c0ab3a378a7bae2a0562b88432d70d8eeafca5186a3482da8e7b9b2569521941",
15+
git_commit = "2641774badd99be2ea1d3c24ec89d661dd3343bd",
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
@@ -440,7 +440,7 @@ pkg_deb(
440440
homepage = "https://github.com/tensorflow/serving",
441441
maintainer = "TensorFlow Serving team",
442442
package = "tensorflow-model-server",
443-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
443+
version = "2.2.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
444444
)
445445

446446
# Build with '-c opt'
@@ -451,5 +451,5 @@ pkg_deb(
451451
homepage = "https://github.com/tensorflow/serving",
452452
maintainer = "TensorFlow Serving team",
453453
package = "tensorflow-model-server-universal",
454-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
454+
version = "2.2.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
455455
)

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

+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.2.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.2.0-rc0'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)