Skip to content

Commit 68eda92

Browse files
authored
Update version for 2.17.0 release. (#2225)
* Update version for 2.17.0 release
1 parent 9b737d1 commit 68eda92

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
@@ -24,8 +24,8 @@ local_repository(
2424
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
2525
tensorflow_http_archive(
2626
name = "org_tensorflow",
27-
sha256 = "eac86da8f3d865114eb2d3b50c58d1791248132b7895ddbbd308d3e9fb967bcd",
28-
git_commit = "953daf90a301ec39e8c00f3bbdbd0620a82571c0",
27+
sha256 = "75b8dc9b33afff6f2e2d2e2dacc26dd0973bdcee94eec2af290828c1bc574bdc",
28+
git_commit = "ad6d8cc177d0c868982e39e0823d0efbfb95f04c",
2929
)
3030

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

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ pkg_deb(
659659
homepage = "https://github.com/tensorflow/serving",
660660
maintainer = "TensorFlow Serving team",
661661
package = "tensorflow-model-server",
662-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
662+
version = "2.17.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
663663
)
664664

665665
# Build with '-c opt'
@@ -670,5 +670,5 @@ pkg_deb(
670670
homepage = "https://github.com/tensorflow/serving",
671671
maintainer = "TensorFlow Serving team",
672672
package = "tensorflow-model-server-universal",
673-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
673+
version = "2.17.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
674674
)

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 17
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.17.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.17.0,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)