Skip to content

Commit 84b6b8e

Browse files
authored
Merge pull request #2191 from rtg0795/releng_20231026_115440
Update version for 2.14.0 release.
2 parents d7983ba + 2f4cb27 commit 84b6b8e

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 = "db9e2ae1fd7daaa23614fd9ad7974e2c3def1913185619a4664fd5a1d9742066",
28-
git_commit = "dd01672d9a99ac372cc77a2a84faf0aedaefa36c",
27+
sha256 = "832274d627f370ec97bace438dc7ac680856b2677e891ae8288e182dcd8fe8db",
28+
git_commit = "4dacf3f368eb7965e9b5c3bbdd5193986081c3b2",
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
@@ -539,7 +539,7 @@ pkg_deb(
539539
homepage = "https://github.com/tensorflow/serving",
540540
maintainer = "TensorFlow Serving team",
541541
package = "tensorflow-model-server",
542-
version = "2.14.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
542+
version = "2.14.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
543543
)
544544

545545
# Build with '-c opt'
@@ -550,5 +550,5 @@ pkg_deb(
550550
homepage = "https://github.com/tensorflow/serving",
551551
maintainer = "TensorFlow Serving team",
552552
package = "tensorflow-model-server-universal",
553-
version = "2.14.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
553+
version = "2.14.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
554554
)

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)