Skip to content

Commit

Permalink
Update version for 2.18.0 release. (#2264)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 authored Oct 28, 2024
1 parent 67f4ee8 commit 5815bfd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ local_repository(
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "49bc35a6a81acf497a59652a4c53a1ca52172257049c36a8203d2556ec13a2e8",
git_commit = "d5f4a3f5ddc60df66d732cdba0c3ad1e51b7a339",
sha256 = "403916fbcfcbd5657cd891a871debc72433d7a8c56760297a79085e1abc8f18a",
git_commit = "6550e4bd80223cdb8be6c3afd1f81e86a4d433c3",
)

# Import all of TensorFlow Serving's external dependencies.
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_serving/model_servers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "2.18.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.18.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -672,5 +672,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.18.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.18.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)
4 changes: 2 additions & 2 deletions tensorflow_serving/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
DOCLINES = __doc__.split('\n')

# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
_VERSION = '2.18.0-rc0'
_VERSION = '2.18.0'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.18.0-rc2,<3'
_TF_VERSION = '>=2.18.0,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 5815bfd

Please sign in to comment.