Skip to content

Commit

Permalink
Update version for 2.12.0 release. (#2135)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 authored Apr 26, 2023
1 parent 257040d commit 962aae1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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 = "ac1fd426818b9e16f8ff6e8a43c167edf85933b616387af722c6395c505d994c",
git_commit = "a2b32d7cdf320165f22572ace77186b09d2bfe1b",
sha256 = "e97c242d13e386192e3a9f60fd674461b6595b02b3a2a48edd6fb11aeee7e038",
git_commit = "0db597d0d758aba578783b5bf46c889700a45085",
)

# 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 @@ -534,7 +534,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.12.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -545,5 +545,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.12.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)
4 changes: 2 additions & 2 deletions tensorflow_serving/model_servers/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ 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_MAJOR_VERSION 2
#define TF_MODELSERVER_MINOR_VERSION 12
#define TF_MODELSERVER_PATCH_VERSION 0
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
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.12.0'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=1.2.0,<3'
_TF_VERSION = '>=2.12.0,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 962aae1

Please sign in to comment.