Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "dde2c8be3c7cfba7e00114503881774b7af0feaed3cb01ba74ef5b12ef9a1b40",
git_commit = "d745ff2a48cebf18e847e8b602a744e97e058946",
sha256 = "ed8b08aec9b1cebcb4af75c5a42b50e316afddf3ed4d3d219310f205230d4ff6",
git_commit = "cfe0c80169ae984bcdc99ff6de7444164aaa8e07",
)

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 @@ -440,7 +440,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "2.2.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.2.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -451,5 +451,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.2.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.2.3", # 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 2
#define TF_MODELSERVER_PATCH_VERSION 2
#define TF_MODELSERVER_PATCH_VERSION 3
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
#define TF_MODELSERVER_VERSION_SUFFIX "-rc2"
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.2.2'
_VERSION = '2.2.3'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.2.2,<3'
_TF_VERSION = '>=2.2.3,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down