Skip to content

Commit a826c57

Browse files
authored
Merge pull request #1889 from jurampark/releng_20210706_221009
Update version for 2.2.3 release.
2 parents 57c7720 + e89e0f5 commit a826c57

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
@@ -11,8 +11,8 @@ load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1111

1212
tensorflow_http_archive(
1313
name = "org_tensorflow",
14-
sha256 = "dde2c8be3c7cfba7e00114503881774b7af0feaed3cb01ba74ef5b12ef9a1b40",
15-
git_commit = "d745ff2a48cebf18e847e8b602a744e97e058946",
14+
sha256 = "ed8b08aec9b1cebcb4af75c5a42b50e316afddf3ed4d3d219310f205230d4ff6",
15+
git_commit = "cfe0c80169ae984bcdc99ff6de7444164aaa8e07",
1616
)
1717

1818
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

tensorflow_serving/model_servers/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ pkg_deb(
440440
homepage = "https://github.com/tensorflow/serving",
441441
maintainer = "TensorFlow Serving team",
442442
package = "tensorflow-model-server",
443-
version = "2.2.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
443+
version = "2.2.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
444444
)
445445

446446
# Build with '-c opt'
@@ -451,5 +451,5 @@ pkg_deb(
451451
homepage = "https://github.com/tensorflow/serving",
452452
maintainer = "TensorFlow Serving team",
453453
package = "tensorflow-model-server-universal",
454-
version = "2.2.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
454+
version = "2.2.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
455455
)

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 2
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 "-rc2"

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)