Skip to content

Commit 6ac4745

Browse files
authored
Update version for 2.12.2 release. (#2160)
1 parent bd203fa commit 6ac4745

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

WORKSPACE

Lines changed: 2 additions & 2 deletions
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 = "e97c242d13e386192e3a9f60fd674461b6595b02b3a2a48edd6fb11aeee7e038",
28-
git_commit = "0db597d0d758aba578783b5bf46c889700a45085",
27+
sha256 = "31a4ba0abab134e632c8e71ac6d1f92443858f04e8485f51ba7eeaad8d0cf9c4",
28+
git_commit = "8e2b6655c0c488290179ab90a0daed0f6d3006f7",
2929
)
3030

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

tensorflow_serving/model_servers/BUILD

Lines changed: 2 additions & 2 deletions
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 = "2.12.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
537+
version = "2.12.2", # 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 = "2.12.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
548+
version = "2.12.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
549549
)

tensorflow_serving/model_servers/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424

2525
#define TF_MODELSERVER_MAJOR_VERSION 2
2626
#define TF_MODELSERVER_MINOR_VERSION 12
27-
#define TF_MODELSERVER_PATCH_VERSION 1
27+
#define TF_MODELSERVER_PATCH_VERSION 2
2828
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
2929
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
3030
#define TF_MODELSERVER_VERSION_SUFFIX ""

tensorflow_serving/tools/pip_package/setup.py

Lines changed: 2 additions & 2 deletions
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 = '2.12.1'
34+
_VERSION = '2.12.2'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.12.0,<3'
36+
_TF_VERSION = '>=2.12.1,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)