Skip to content

Commit d22fc19

Browse files
authored
Merge pull request #1656 from nrobeR/releng_20200602_221824
Update version for 2.2.0 release.
2 parents 93ca326 + 066c50a commit d22fc19

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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 = "1e639001b85361742b6f079d0aa2b5093c5f27b5c6bec7644730073b6b6cbf76",
15-
git_commit = "70087ab4f46a4bebaacce1023cd12bd9c655e159",
14+
sha256 = "b3d7829fac84e3a26264d84057367730b6b85b495a0fce15929568f4b55dc144",
15+
git_commit = "2b96f3662bd776e277f86997659e61046b56c315",
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 = "2.2.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
443+
version = "2.2.0", # 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 = "2.2.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
454+
version = "2.2.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
455455
)

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)