Skip to content

Commit 5e8789e

Browse files
authored
Update version for 2.9.3 release. (#2079)
1 parent 09c99a4 commit 5e8789e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ workspace(name = "tf_serving")
1515
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1616
tensorflow_http_archive(
1717
name = "org_tensorflow",
18-
sha256 = "cd6db9301e3537ced2ea3b2c2ef7671e1134e4dd5ed2617b79ff1ddc864c1d62",
19-
git_commit = "18960c44ad3f5219c22dca55f842912dbce78a07",
18+
sha256 = "cbed52f7f29fb4eaec3cb146f4aba4f622fdf3d3471c88cdf787428005a854c6",
19+
git_commit = "a5ed5f39b675a1c6f315e0caf3ad4b38478fa571",
2020
)
2121

2222
# Import all of TensorFlow Serving's external dependencies.

tensorflow_serving/model_servers/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ pkg_deb(
526526
homepage = "https://github.com/tensorflow/serving",
527527
maintainer = "TensorFlow Serving team",
528528
package = "tensorflow-model-server",
529-
version = "2.9.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
529+
version = "2.9.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
530530
)
531531

532532
# Build with '-c opt'
@@ -537,5 +537,5 @@ pkg_deb(
537537
homepage = "https://github.com/tensorflow/serving",
538538
maintainer = "TensorFlow Serving team",
539539
package = "tensorflow-model-server-universal",
540-
version = "2.9.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
540+
version = "2.9.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
541541
)

tensorflow_serving/model_servers/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424

2525
#define TF_MODELSERVER_MAJOR_VERSION 2
2626
#define TF_MODELSERVER_MINOR_VERSION 9
27-
#define TF_MODELSERVER_PATCH_VERSION 2
27+
#define TF_MODELSERVER_PATCH_VERSION 3
2828
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
2929
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
3030
#define TF_MODELSERVER_VERSION_SUFFIX ""

tensorflow_serving/tools/pip_package/setup.py

Lines changed: 2 additions & 2 deletions
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.9.2'
34+
_VERSION = '2.9.3'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.9.2,<3'
36+
_TF_VERSION = '>=2.9.3,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)