Skip to content

Commit 74805f2

Browse files
Merge pull request #1777 from shadowdragon89/releng_20201201_184636
Update version for 2.4.0-rc3 release.
2 parents 1029399 + abe4ffe commit 74805f2

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

1212
tensorflow_http_archive(
1313
name = "org_tensorflow",
14-
sha256 = "098733e15e227a6a55997295ca761a9a8e7169b64104ea86feb952e4e2ea0bc9",
15-
git_commit = "0b06f2927be226ffe44f47bfa9e03e4ea649d7f3",
14+
sha256 = "3782d53ab87a9b3a0e1d29a5eb9758bdb8de1c05ec762142ff9c2c7c68cf9b2d",
15+
git_commit = "68f236364cdd261754c68782d99ec2fc791922e6",
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
@@ -477,7 +477,7 @@ pkg_deb(
477477
homepage = "https://github.com/tensorflow/serving",
478478
maintainer = "TensorFlow Serving team",
479479
package = "tensorflow-model-server",
480-
version = "2.4.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
480+
version = "2.4.0-rc3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
481481
)
482482

483483
# Build with '-c opt'
@@ -488,5 +488,5 @@ pkg_deb(
488488
homepage = "https://github.com/tensorflow/serving",
489489
maintainer = "TensorFlow Serving team",
490490
package = "tensorflow-model-server-universal",
491-
version = "2.4.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
491+
version = "2.4.0-rc3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
492492
)

tensorflow_serving/model_servers/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
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 "-rc2"
30+
#define TF_MODELSERVER_VERSION_SUFFIX "-rc3"
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 = '2.4.0-rc2'
34+
_VERSION = '2.4.0-rc3'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.4,<3'
36+
_TF_VERSION = '>=2.4.0-rc3,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)