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 = "5aae44f967556dc524e6b184643bbd33a2d78184bc654b72c09f041f266b89a2",
git_commit = "a6d8ffae097d0132989ae4688d224121ec6d8f35",
sha256 = "757b3c5b2b8b372c39e2db41cb9b55638e2814c70587f79186d93d7a1850cfa9",
git_commit = "5b900cfe4b3b848f577315a0dde09a729f770e95",
)

# TensorFlow depends on "io_bazel_rules_closure" so we need this here.
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 = "1.12.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "1.12.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 = "1.12.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "1.12.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 1
#define TF_MODELSERVER_MINOR_VERSION 12
#define TF_MODELSERVER_PATCH_VERSION 0
#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 "-rc0"
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_serving/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
DOCLINES = __doc__.split('\n')

# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
_VERSION = '1.12.0'
_VERSION = '1.12.3'

REQUIRED_PACKAGES = [
'tensorflow>=1.2.0,<2',
Expand Down