Skip to content

Commit ae482b9

Browse files
authored
Update version for 2.13.1 release. (#2187)
1 parent 83c949c commit ae482b9

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
@@ -24,8 +24,8 @@ local_repository(
2424
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
2525
tensorflow_http_archive(
2626
name = "org_tensorflow",
27-
sha256 = "a62eba23ebfcf1d6d2d3241f1629b99df576a9f726c439a97c3acd590e71fe62",
28-
git_commit = "1cb1a030a62b169d90d34c747ab9b09f332bf905",
27+
sha256 = "fa01678847283115e0b359ebb4db427ab88e289ab0b20376e1a2b3cb775eb720",
28+
git_commit = "f841394b1b714c5cc5366536411cf146c8c570df",
2929
)
3030

3131
# 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
@@ -535,7 +535,7 @@ pkg_deb(
535535
homepage = "https://github.com/tensorflow/serving",
536536
maintainer = "TensorFlow Serving team",
537537
package = "tensorflow-model-server",
538-
version = "2.13.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
538+
version = "2.13.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
539539
)
540540

541541
# Build with '-c opt'
@@ -546,5 +546,5 @@ pkg_deb(
546546
homepage = "https://github.com/tensorflow/serving",
547547
maintainer = "TensorFlow Serving team",
548548
package = "tensorflow-model-server-universal",
549-
version = "2.13.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
549+
version = "2.13.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
550550
)

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 13
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

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)