Skip to content

Commit d7983ba

Browse files
authored
Update version for 2.14.0-rc1 release. (#2190)
1 parent 2a498ba commit d7983ba

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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 = "0705361e075932c2c9aca5f3c25a7d4317b8788dd79d43f675e93f8baf40ce37",
28-
git_commit = "71056bdc9ea85dfe478ede45b86a80be1eecaa5b",
27+
sha256 = "db9e2ae1fd7daaa23614fd9ad7974e2c3def1913185619a4664fd5a1d9742066",
28+
git_commit = "dd01672d9a99ac372cc77a2a84faf0aedaefa36c",
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
@@ -539,7 +539,7 @@ pkg_deb(
539539
homepage = "https://github.com/tensorflow/serving",
540540
maintainer = "TensorFlow Serving team",
541541
package = "tensorflow-model-server",
542-
version = "2.14.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
542+
version = "2.14.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
543543
)
544544

545545
# Build with '-c opt'
@@ -550,5 +550,5 @@ pkg_deb(
550550
homepage = "https://github.com/tensorflow/serving",
551551
maintainer = "TensorFlow Serving team",
552552
package = "tensorflow-model-server-universal",
553-
version = "2.14.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
553+
version = "2.14.0-rc1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
554554
)

tensorflow_serving/model_servers/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
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")
30-
#define TF_MODELSERVER_VERSION_SUFFIX "-rc0"
30+
#define TF_MODELSERVER_VERSION_SUFFIX "-rc1"
3131

3232
#ifndef TF_MODELSERVER_VERSION_NO_META
3333
// TF_MODELSERVER_BUILD_TAG can be set to be nightly for nightly builds

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 = '2.14.0-rc0'
34+
_VERSION = '2.14.0-rc1'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.14.0-rc0,<3'
36+
_TF_VERSION = '>=2.14.0-rc1,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)