Skip to content

Commit c491ba6

Browse files
authored
Update version for 2.19.0 release. (#4107)
1 parent 7b11cb5 commit c491ba6

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 = "7336e35118cda8bc36c7e0b38d7557c8949ba69e0c607f0c076538f4bdb99d15",
28-
git_commit = "428fffef154ddf600752fdd420cf8ee040cf6646",
27+
sha256 = "49279646fe4effe3bdc8f5227724566991adc70cf2fd2d22e5591c397db9b037",
28+
git_commit = "e36baa302922ea3c7131b302c2996bd2051ee5c4",
2929
patch = "//third_party/tensorflow:tensorflow.patch",
3030
)
3131

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ pkg_deb(
662662
homepage = "https://github.com/tensorflow/serving",
663663
maintainer = "TensorFlow Serving team",
664664
package = "tensorflow-model-server",
665-
version = "2.19.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
665+
version = "2.19.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
666666
)
667667

668668
# Build with '-c opt'
@@ -673,5 +673,5 @@ pkg_deb(
673673
homepage = "https://github.com/tensorflow/serving",
674674
maintainer = "TensorFlow Serving team",
675675
package = "tensorflow-model-server-universal",
676-
version = "2.19.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
676+
version = "2.19.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
677677
)

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)