Skip to content

Commit 76fa2cb

Browse files
authored
Merge pull request #2073 from rtg0795/releng_20221024_101705
Update version for 2.11.0-rc1 release.
2 parents 2be42f1 + 3e74ad6 commit 76fa2cb

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

WORKSPACE

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1616
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1717
tensorflow_http_archive(
1818
name = "org_tensorflow",
19-
sha256 = "5ae3ba26552af0d5990e7937ca3079eb6f36d9d491b9a8b45dca6add91e35f98",
20-
git_commit = "ba36eac6614d5c1f1e9bab6d2399749b68e8732e",
19+
sha256 = "465a2cde70c15ef2ecd5c38cbf2817be01af98b4bcfb7f6a7b89ca84ac2ba1a0",
20+
git_commit = "8aa3c875bb16f60650a3b41a637097b3bae4b4c2",
2121
)
2222

2323
http_archive(

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ pkg_deb(
530530
homepage = "https://github.com/tensorflow/serving",
531531
maintainer = "TensorFlow Serving team",
532532
package = "tensorflow-model-server",
533-
version = "2.11.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
533+
version = "2.11.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
534534
)
535535

536536
# Build with '-c opt'
@@ -541,5 +541,5 @@ pkg_deb(
541541
homepage = "https://github.com/tensorflow/serving",
542542
maintainer = "TensorFlow Serving team",
543543
package = "tensorflow-model-server-universal",
544-
version = "2.11.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
544+
version = "2.11.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
545545
)

tensorflow_serving/model_servers/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
2727
#define TF_MODELSERVER_PATCH_VERSION 0
2828
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
2929
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
30-
#define TF_MODELSERVER_VERSION_SUFFIX "-rc0"
30+
#define TF_MODELSERVER_VERSION_SUFFIX "-rc1"
3131

3232
#ifndef TF_MODELSERVER_VERSION_NO_META
3333
// TF_MODELSERVER_BUILD_TAG can be set to be nightly for nightly builds

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)