Skip to content

Commit

Permalink
Merge pull request #2113 from xiaoxlu/releng_20230322_124722
Browse files Browse the repository at this point in the history
Update version for 2.11.1 release.
  • Loading branch information
xiaoxlu authored Mar 23, 2023
2 parents 7c9bd6b + 47b905d commit 3c50b8f
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 @@ -15,8 +15,8 @@ workspace(name = "tf_serving")
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "37abf3d45a34e11012ef60ee6dcd79e317384b62d319b6346cc2a94eb447e172",
git_commit = "d5b57ca93e506df258271ea00fc29cf98383a374",
sha256 = "9568da04825d949ce51a67d80cc90e239717b39e8de8c14ee9df0af90b04faa0",
git_commit = "a3e2c692c18649329c4210cf8df2487d2028e267",
)

# Import all of TensorFlow Serving's external dependencies.
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", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.11.1", # 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", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.11.1", # 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 @@ -24,7 +24,7 @@ limitations under the License.

#define TF_MODELSERVER_MAJOR_VERSION 2
#define TF_MODELSERVER_MINOR_VERSION 11
#define TF_MODELSERVER_PATCH_VERSION 0
#define TF_MODELSERVER_PATCH_VERSION 1
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
#define TF_MODELSERVER_VERSION_SUFFIX "-rc2"
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'
_VERSION = '2.11.1'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.11.0,<3'
_TF_VERSION = '>=2.11.1,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 3c50b8f

Please sign in to comment.