Skip to content

Commit cc2f8d4

Browse files
authored
Update version for 2.6.2 release. (#1937)
1 parent cafcf22 commit cc2f8d4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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 = "e54915c6e41c46b2de00881583f6779218a97a9bfa8480fb157371194f92b14b",
19-
git_commit = "3aa40c3ce9d16eae296f086bc4ac4d62deb2affc",
18+
sha256 = "add5982a3ce3b9964b7122dd0d28927b6a9d9abd8f95a89eda18ca76648a0ae8",
19+
git_commit = "c2363d6d025981c661f8cbecf4c73ca7fbf38caf",
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
@@ -492,7 +492,7 @@ pkg_deb(
492492
homepage = "https://github.com/tensorflow/serving",
493493
maintainer = "TensorFlow Serving team",
494494
package = "tensorflow-model-server",
495-
version = "2.6.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
495+
version = "2.6.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
496496
)
497497

498498
# Build with '-c opt'
@@ -503,5 +503,5 @@ pkg_deb(
503503
homepage = "https://github.com/tensorflow/serving",
504504
maintainer = "TensorFlow Serving team",
505505
package = "tensorflow-model-server-universal",
506-
version = "2.6.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
506+
version = "2.6.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
507507
)

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 6
27-
#define TF_MODELSERVER_PATCH_VERSION 1
27+
#define TF_MODELSERVER_PATCH_VERSION 2
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

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)