Skip to content

Commit d09ca09

Browse files
authored
Update version for 2.18.1 release. (#4073)
1 parent 5815bfd commit d09ca09

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
@@ -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 = "403916fbcfcbd5657cd891a871debc72433d7a8c56760297a79085e1abc8f18a",
28-
git_commit = "6550e4bd80223cdb8be6c3afd1f81e86a4d433c3",
27+
sha256 = "5fcca4ec0732e146547fc26f6966cf92236c2f85a9e086b85c83d303e2c38980",
28+
git_commit = "cb64295ec7308f770b22db6047a1e755b35b7bee",
2929
)
3030

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

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ pkg_deb(
661661
homepage = "https://github.com/tensorflow/serving",
662662
maintainer = "TensorFlow Serving team",
663663
package = "tensorflow-model-server",
664-
version = "2.18.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
664+
version = "2.18.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
665665
)
666666

667667
# Build with '-c opt'
@@ -672,5 +672,5 @@ pkg_deb(
672672
homepage = "https://github.com/tensorflow/serving",
673673
maintainer = "TensorFlow Serving team",
674674
package = "tensorflow-model-server-universal",
675-
version = "2.18.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
675+
version = "2.18.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
676676
)

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 18
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 "-rc0"

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)