Skip to content

Commit 6543800

Browse files
authored
Merge pull request #1839 from nniuzft/releng_20210407_193728
Update version for 2.5.0 release.
2 parents 79860d5 + 09ac630 commit 6543800

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

WORKSPACE

+2-2
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 = "150b5a4feb512d4c9f82d32fc342b70281fddf68944a61d1ff171a8024bd27a5",
19-
git_commit = "e0b0822dd5fabe2d9b8374c7d7c7fb375ac9d98e",
18+
sha256 = "073403cc88520dfe60ac79e1205995931c7c8f744b2e492cada61fe32e2e9f4e",
19+
git_commit = "a8b6d5ff93a37ccba92137e1cab2ae2ee6640ad6",
2020
)
2121

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

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

tensorflow_serving/model_servers/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ limitations under the License.
2222
#define TF_MODELSERVER_STR_HELPER(x) #x
2323
#define TF_MODELSERVER_STR(x) TF_MODELSERVER_STR_HELPER(x)
2424

25-
#define TF_MODELSERVER_MAJOR_VERSION 0
26-
#define TF_MODELSERVER_MINOR_VERSION 0
25+
#define TF_MODELSERVER_MAJOR_VERSION 2
26+
#define TF_MODELSERVER_MINOR_VERSION 5
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")

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)