Skip to content

Commit 0e62613

Browse files
authored
Update version for 2.16.1 release. (#2210)
1 parent f813c73 commit 0e62613

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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 = "97a22e7d13b1fd9b9491692768b6cecffd623d94e6cbe2e06cbfb15149949e84",
28-
git_commit = "30488e7e5785733ec638fb1839ca75173ac97e5f",
27+
sha256 = "fe592915c85d1a89c20f3dd89db0772ee22a0fbda78e39aa46a778d638a96abc",
28+
git_commit = "5bc9d26649cca274750ad3625bd93422617eed4b",
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
@@ -659,7 +659,7 @@ pkg_deb(
659659
homepage = "https://github.com/tensorflow/serving",
660660
maintainer = "TensorFlow Serving team",
661661
package = "tensorflow-model-server",
662-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
662+
version = "2.16.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
663663
)
664664

665665
# Build with '-c opt'
@@ -670,5 +670,5 @@ pkg_deb(
670670
homepage = "https://github.com/tensorflow/serving",
671671
maintainer = "TensorFlow Serving team",
672672
package = "tensorflow-model-server-universal",
673-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
673+
version = "2.16.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
674674
)

tensorflow_serving/model_servers/version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ limitations under the License.
2222
#define TF_MODELSERVER_STR_HELPER(x) #x
2323
#define TF_MODELSERVER_STR(x) TF_MODELSERVER_STR_HELPER(x)
2424

25-
#define TF_MODELSERVER_MAJOR_VERSION 0
26-
#define TF_MODELSERVER_MINOR_VERSION 0
27-
#define TF_MODELSERVER_PATCH_VERSION 0
25+
#define TF_MODELSERVER_MAJOR_VERSION 2
26+
#define TF_MODELSERVER_MINOR_VERSION 16
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 ""

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)