Skip to content

Commit af33a24

Browse files
authored
Merge pull request #1787 from guanxinq/releng_20201215_094529
Update version for 2.4.0 release.
2 parents d18ce08 + 48c4da3 commit af33a24

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 = "ba087c3e3a33e266919f8861c2adc7a1d6530c7f7d02d23e7b20dc38f48cee8f",
15-
git_commit = "97c3fef64ba9937a52af2d72fb4104b6e541d4b2",
14+
sha256 = "9c94bfec7214853750c7cacebd079348046f246ec0174d01cd36eda375117628",
15+
git_commit = "582c8d236cb079023657287c318ff26adb239002",
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-rc4", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
480+
version = "2.4.0", # 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-rc4", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
491+
version = "2.4.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
492492
)

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)