Skip to content

Commit 5815bfd

Browse files
authored
Update version for 2.18.0 release. (#2264)
1 parent 67f4ee8 commit 5815bfd

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
@@ -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 = "49bc35a6a81acf497a59652a4c53a1ca52172257049c36a8203d2556ec13a2e8",
28-
git_commit = "d5f4a3f5ddc60df66d732cdba0c3ad1e51b7a339",
27+
sha256 = "403916fbcfcbd5657cd891a871debc72433d7a8c56760297a79085e1abc8f18a",
28+
git_commit = "6550e4bd80223cdb8be6c3afd1f81e86a4d433c3",
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
@@ -661,7 +661,7 @@ pkg_deb(
661661
homepage = "https://github.com/tensorflow/serving",
662662
maintainer = "TensorFlow Serving team",
663663
package = "tensorflow-model-server",
664-
version = "2.18.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
664+
version = "2.18.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
665665
)
666666

667667
# Build with '-c opt'
@@ -672,5 +672,5 @@ pkg_deb(
672672
homepage = "https://github.com/tensorflow/serving",
673673
maintainer = "TensorFlow Serving team",
674674
package = "tensorflow-model-server-universal",
675-
version = "2.18.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
675+
version = "2.18.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
676676
)

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)