Skip to content

Commit

Permalink
Update version for 2.4.4 release. (#1931)
Browse files Browse the repository at this point in the history
  • Loading branch information
jay90099 authored Nov 3, 2021
1 parent ae55ceb commit d5e1076
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")

tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "06f0b1b1e77018105fab2fd07b66328d5f142734ad67a988444171ee2a006147",
git_commit = "4c0b84bf2a714bcdd18da1f1f94d533d72399d52",
sha256 = "88d37e0ab608d2690cb4c5b2de47d22bf56bbc867471f9cf0b54842933034782",
git_commit = "64918868e2154b06c7479347a59a4230f785e9fa",
)

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
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 @@ -477,7 +477,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "2.4.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.4.4", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -488,5 +488,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.4.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.4.4", # 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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ limitations under the License.

#define TF_MODELSERVER_MAJOR_VERSION 2
#define TF_MODELSERVER_MINOR_VERSION 4
#define TF_MODELSERVER_PATCH_VERSION 3
#define TF_MODELSERVER_PATCH_VERSION 4
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
#define TF_MODELSERVER_VERSION_SUFFIX "-rc4"
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 = '2.4.3'
_VERSION = '2.4.4'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.4.3,<3'
_TF_VERSION = '>=2.4.4,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit d5e1076

Please sign in to comment.