Skip to content

Commit

Permalink
Merge pull request #2191 from rtg0795/releng_20231026_115440
Browse files Browse the repository at this point in the history
Update version for 2.14.0 release.
  • Loading branch information
gharibian committed Oct 26, 2023
2 parents d7983ba + 2f4cb27 commit 84b6b8e
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 = "db9e2ae1fd7daaa23614fd9ad7974e2c3def1913185619a4664fd5a1d9742066",
git_commit = "dd01672d9a99ac372cc77a2a84faf0aedaefa36c",
sha256 = "832274d627f370ec97bace438dc7ac680856b2677e891ae8288e182dcd8fe8db",
git_commit = "4dacf3f368eb7965e9b5c3bbdd5193986081c3b2",
)

# 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 @@ -539,7 +539,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "2.14.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.14.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -550,5 +550,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.14.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.14.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.14.0-rc1'
_VERSION = '2.14.0'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.14.0-rc1,<3'
_TF_VERSION = '>=2.14.0,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 84b6b8e

Please sign in to comment.