Skip to content

Commit b27bc32

Browse files
authored
Merge pull request #2028 from rtg0795/releng_20220711_130904
Update version for 2.7.3 release.
2 parents 1fde410 + ee7892b commit b27bc32

File tree

11 files changed

+79
-13
lines changed

11 files changed

+79
-13
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 = "ff0df77ec72676d3260502dd19f34518ecd65bb9ead4f7dfdf8bd11cff8640e3",
19-
git_commit = "c256c071bb26e1e13b4666d1b3e229e110bc914a",
18+
sha256 = "947aef997003e69eea839f827daf050fa75bf0045382dd9502c263207ece20b9",
19+
git_commit = "fa3dcb4eadd639abb116f2b8d3019e51064e45b1",
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
@@ -490,7 +490,7 @@ pkg_deb(
490490
homepage = "https://github.com/tensorflow/serving",
491491
maintainer = "TensorFlow Serving team",
492492
package = "tensorflow-model-server",
493-
version = "2.7.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
493+
version = "2.7.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
494494
)
495495

496496
# Build with '-c opt'
@@ -501,5 +501,5 @@ pkg_deb(
501501
homepage = "https://github.com/tensorflow/serving",
502502
maintainer = "TensorFlow Serving team",
503503
package = "tensorflow-model-server-universal",
504-
version = "2.7.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
504+
version = "2.7.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
505505
)

tensorflow_serving/model_servers/tensorflow_model_server_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
FLAGS = flags.FLAGS
4646

47-
RPC_TIMEOUT = 5.0
47+
RPC_TIMEOUT = 20.0
4848
GRPC_SOCKET_PATH = '/tmp/tf-serving.sock'
4949

5050

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 7
27-
#define TF_MODELSERVER_PATCH_VERSION 0
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 "-rc1"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
�root"_tf_keras_model*�{"name": "tf_text_ops", "trainable": true, "expects_training_arg": false, "dtype": "float32", "batch_input_shape": null, "must_restore_from_config": false, "class_name": "TfTextOps", "config": {"layer was saved without config": true}, "is_graph_network": false, "full_save_spec": {"class_name": "__tuple__", "items": [[{"class_name": "TypeSpec", "type_spec": "tf.TensorSpec", "serialized": [{"class_name": "TensorShape", "items": [1]}, "float32", "input_1"]}], {}]}, "save_spec": {"class_name": "TypeSpec", "type_spec": "tf.TensorSpec", "serialized": [{"class_name": "TensorShape", "items": [1]}, "float32", "input_1"]}, "keras_version": "2.7.0", "backend": "tensorflow", "model_config": {"class_name": "TfTextOps"}}2
-288 KB
Binary file not shown.
275 Bytes
Binary file not shown.
1 Byte
Binary file not shown.

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

3939
project_name = 'tensorflow-serving-api'

tensorflow_serving/workspace.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ def tf_serving_workspace():
5656
# https://github.com/tensorflow/text/blob/master/oss_scripts/model_server/save_models.py
5757
http_archive(
5858
name = "org_tensorflow_text",
59-
sha256 = "0991ff93959a0e3ec7d16ba9d9ff9b4463bba565da402f1460cdbfa731112034",
60-
strip_prefix = "text-2.6.0",
61-
url = "https://github.com/tensorflow/text/archive/v2.6.0.zip",
59+
sha256 = "7c6940e1fce8574f655fd5b20ab82e60b65bddb4c08b7ce669d8d6761e245bb9",
60+
strip_prefix = "text-2.7.3",
61+
url = "https://github.com/tensorflow/text/archive/v2.7.3.zip",
6262
patches = ["@//third_party/tf_text:tftext.patch"],
6363
patch_args = ["-p1"],
6464
repo_mapping = {"@com_google_re2": "@com_googlesource_code_re2"},

0 commit comments

Comments
 (0)