Skip to content

Commit f144361

Browse files
authored
Merge pull request #1840 from nniuzft/releng_20210416_104859
Update version for 2.5.0-rc0 release.
2 parents 6543800 + 08135ab commit f144361

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tensorflow_serving/model_servers/BUILD

+2-2
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", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
493+
version = "2.5.0-rc0", # 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", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
504+
version = "2.5.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
505505
)

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 ""
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
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'
34+
_VERSION = '2.5.0-rc0'
3535
# Have this by default be open; releasing a new version will lock to TF version
3636
_TF_VERSION = '>=2.5.0-rc0,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

0 commit comments

Comments
 (0)