Skip to content

Commit

Permalink
Update version for 2.16.1 release. (#2210)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 authored Mar 21, 2024
1 parent f813c73 commit 0e62613
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ local_repository(
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "97a22e7d13b1fd9b9491692768b6cecffd623d94e6cbe2e06cbfb15149949e84",
git_commit = "30488e7e5785733ec638fb1839ca75173ac97e5f",
sha256 = "fe592915c85d1a89c20f3dd89db0772ee22a0fbda78e39aa46a778d638a96abc",
git_commit = "5bc9d26649cca274750ad3625bd93422617eed4b",
)

# Import all of TensorFlow Serving's external dependencies.
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_serving/model_servers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.16.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -670,5 +670,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.16.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)
6 changes: 3 additions & 3 deletions tensorflow_serving/model_servers/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ limitations under the License.
#define TF_MODELSERVER_STR_HELPER(x) #x
#define TF_MODELSERVER_STR(x) TF_MODELSERVER_STR_HELPER(x)

#define TF_MODELSERVER_MAJOR_VERSION 0
#define TF_MODELSERVER_MINOR_VERSION 0
#define TF_MODELSERVER_PATCH_VERSION 0
#define TF_MODELSERVER_MAJOR_VERSION 2
#define TF_MODELSERVER_MINOR_VERSION 16
#define TF_MODELSERVER_PATCH_VERSION 1
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
#define TF_MODELSERVER_VERSION_SUFFIX ""
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_serving/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
DOCLINES = __doc__.split('\n')

# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
_VERSION = '0.0.0'
_VERSION = '2.16.1'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=1.2.0,<3'
_TF_VERSION = '>=2.16.1,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 0e62613

Please sign in to comment.