Skip to content

Commit

Permalink
Merge pull request #2073 from rtg0795/releng_20221024_101705
Browse files Browse the repository at this point in the history
Update version for 2.11.0-rc1 release.
  • Loading branch information
rtg0795 authored Oct 26, 2022
2 parents 2be42f1 + 3e74ad6 commit 76fa2cb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "5ae3ba26552af0d5990e7937ca3079eb6f36d9d491b9a8b45dca6add91e35f98",
git_commit = "ba36eac6614d5c1f1e9bab6d2399749b68e8732e",
sha256 = "465a2cde70c15ef2ecd5c38cbf2817be01af98b4bcfb7f6a7b89ca84ac2ba1a0",
git_commit = "8aa3c875bb16f60650a3b41a637097b3bae4b4c2",
)

http_archive(
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_serving/model_servers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "2.11.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.11.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -541,5 +541,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.11.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.11.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)
2 changes: 1 addition & 1 deletion tensorflow_serving/model_servers/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ limitations under the License.
#define TF_MODELSERVER_PATCH_VERSION 0
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
#define TF_MODELSERVER_VERSION_SUFFIX "-rc0"
#define TF_MODELSERVER_VERSION_SUFFIX "-rc1"

#ifndef TF_MODELSERVER_VERSION_NO_META
// TF_MODELSERVER_BUILD_TAG can be set to be nightly for nightly builds
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_serving/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
DOCLINES = __doc__.split('\n')

# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
_VERSION = '2.11.0-rc0'
_VERSION = '2.11.0-rc1'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.11.0-rc0,<3'
_TF_VERSION = '>=2.11.0-rc1,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 76fa2cb

Please sign in to comment.