Skip to content

Commit 47b905d

Browse files
committed
Update version for 2.11.1 release.
1 parent 7c9bd6b commit 47b905d

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
@@ -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 = "37abf3d45a34e11012ef60ee6dcd79e317384b62d319b6346cc2a94eb447e172",
19-
git_commit = "d5b57ca93e506df258271ea00fc29cf98383a374",
18+
sha256 = "9568da04825d949ce51a67d80cc90e239717b39e8de8c14ee9df0af90b04faa0",
19+
git_commit = "a3e2c692c18649329c4210cf8df2487d2028e267",
2020
)
2121

2222
# Import all of TensorFlow Serving's external dependencies.

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", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
533+
version = "2.11.1", # 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", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
544+
version = "2.11.1", # 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
@@ -24,7 +24,7 @@ limitations under the License.
2424

2525
#define TF_MODELSERVER_MAJOR_VERSION 2
2626
#define TF_MODELSERVER_MINOR_VERSION 11
27-
#define TF_MODELSERVER_PATCH_VERSION 0
27+
#define TF_MODELSERVER_PATCH_VERSION 1
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

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)