Skip to content

Commit

Permalink
Update version for 2.14.1 release. (#2195)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 committed Nov 20, 2023
1 parent 84b6b8e commit f8addc3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Expand Up @@ -24,8 +24,8 @@ local_repository(
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "832274d627f370ec97bace438dc7ac680856b2677e891ae8288e182dcd8fe8db",
git_commit = "4dacf3f368eb7965e9b5c3bbdd5193986081c3b2",
sha256 = "bede963ce97c4badcbb3149acd7c35a6a4954fa3361b777272a58a300e7e8f1d",
git_commit = "99d80a9e254c9df7940b2902b14d15914dbbbcd9",
)

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

# Build with '-c opt'
Expand All @@ -550,5 +550,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.14.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.14.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)
2 changes: 1 addition & 1 deletion tensorflow_serving/model_servers/version.h
Expand Up @@ -24,7 +24,7 @@ limitations under the License.

#define TF_MODELSERVER_MAJOR_VERSION 2
#define TF_MODELSERVER_MINOR_VERSION 14
#define TF_MODELSERVER_PATCH_VERSION 0
#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 "-rc1"
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_serving/tools/pip_package/setup.py
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 = '2.14.0'
_VERSION = '2.14.1'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.14.0,<3'
_TF_VERSION = '>=2.14.1,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit f8addc3

Please sign in to comment.