Skip to content

Commit 962aae1

Browse files
authored
Update version for 2.12.0 release. (#2135)
1 parent 257040d commit 962aae1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

WORKSPACE

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ local_repository(
2424
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
2525
tensorflow_http_archive(
2626
name = "org_tensorflow",
27-
sha256 = "ac1fd426818b9e16f8ff6e8a43c167edf85933b616387af722c6395c505d994c",
28-
git_commit = "a2b32d7cdf320165f22572ace77186b09d2bfe1b",
27+
sha256 = "e97c242d13e386192e3a9f60fd674461b6595b02b3a2a48edd6fb11aeee7e038",
28+
git_commit = "0db597d0d758aba578783b5bf46c889700a45085",
2929
)
3030

3131
# Import all of TensorFlow Serving's external dependencies.

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ pkg_deb(
534534
homepage = "https://github.com/tensorflow/serving",
535535
maintainer = "TensorFlow Serving team",
536536
package = "tensorflow-model-server",
537-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
537+
version = "2.12.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
538538
)
539539

540540
# Build with '-c opt'
@@ -545,5 +545,5 @@ pkg_deb(
545545
homepage = "https://github.com/tensorflow/serving",
546546
maintainer = "TensorFlow Serving team",
547547
package = "tensorflow-model-server-universal",
548-
version = "undefined", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
548+
version = "2.12.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
549549
)

tensorflow_serving/model_servers/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ limitations under the License.
2222
#define TF_MODELSERVER_STR_HELPER(x) #x
2323
#define TF_MODELSERVER_STR(x) TF_MODELSERVER_STR_HELPER(x)
2424

25-
#define TF_MODELSERVER_MAJOR_VERSION 0
26-
#define TF_MODELSERVER_MINOR_VERSION 0
25+
#define TF_MODELSERVER_MAJOR_VERSION 2
26+
#define TF_MODELSERVER_MINOR_VERSION 12
2727
#define TF_MODELSERVER_PATCH_VERSION 0
2828
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
2929
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")

tensorflow_serving/tools/pip_package/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
DOCLINES = __doc__.split('\n')
3232

3333
# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
34-
_VERSION = '0.0.0'
34+
_VERSION = '2.12.0'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=1.2.0,<3'
36+
_TF_VERSION = '>=2.12.0,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)