Skip to content

Commit 8fef4a9

Browse files
authored
Merge pull request #1857 from netfs/releng_20210505_165659
Update version for 2.5.0-rc3 release.
2 parents f190882 + 840d59b commit 8fef4a9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ workspace(name = "tf_serving")
1515
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1616
tensorflow_http_archive(
1717
name = "org_tensorflow",
18-
sha256 = "f6bdf5898df6e54508a93e6f5c4adb37523d03d9c9337d6c387c635bab241530",
19-
git_commit = "e0b8bbee7a66d5afa8b309a06fbfb61b4169266f",
18+
sha256 = "2bd08db59a42ffa9fec6921d8dcfdcc98de4c7ae71c55febc37ba79021f2204b",
19+
git_commit = "fcdf659347024dc5a3130e866ba3dde10bac72b0",
2020
)
2121

2222
# Import all of TensorFlow Serving's external dependencies.

tensorflow_serving/model_servers/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ pkg_deb(
490490
homepage = "https://github.com/tensorflow/serving",
491491
maintainer = "TensorFlow Serving team",
492492
package = "tensorflow-model-server",
493-
version = "2.5.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
493+
version = "2.5.0-rc3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
494494
)
495495

496496
# Build with '-c opt'
@@ -501,5 +501,5 @@ pkg_deb(
501501
homepage = "https://github.com/tensorflow/serving",
502502
maintainer = "TensorFlow Serving team",
503503
package = "tensorflow-model-server-universal",
504-
version = "2.5.0-rc2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
504+
version = "2.5.0-rc3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
505505
)

tensorflow_serving/model_servers/version.h

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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.5.0-rc2'
34+
_VERSION = '2.5.0-rc3'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.5.0-rc2,<3'
36+
_TF_VERSION = '>=2.5.0-rc3,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)