Skip to content

Commit d642a2c

Browse files
authored
Update version for 2.8.4 release. (#2078)
1 parent 336842e commit d642a2c

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
@@ -15,8 +15,8 @@ workspace(name = "tf_serving")
1515
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
1616
tensorflow_http_archive(
1717
name = "org_tensorflow",
18-
sha256 = "d08bea09b8804d4f6a995ba5e98062faaf361b34a2051ca5f8a5d8090c339c97",
19-
git_commit = "92a51d52ad199319e4f9de83fcbe970151dfed7e",
18+
sha256 = "2f44f6b57e065a545d16a64a428d91ec2006def421a6ea44940e159048f15f0c",
19+
git_commit = "1b8f5c396f0c016ebe81fe1af029e6f205c926a4",
2020
)
2121

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

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ pkg_deb(
490490
homepage = "https://github.com/tensorflow/serving",
491491
maintainer = "TensorFlow Serving team",
492492
package = "tensorflow-model-server",
493-
version = "2.8.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
493+
version = "2.8.4", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
494494
)
495495

496496
# Build with '-c opt'
@@ -501,5 +501,5 @@ pkg_deb(
501501
homepage = "https://github.com/tensorflow/serving",
502502
maintainer = "TensorFlow Serving team",
503503
package = "tensorflow-model-server-universal",
504-
version = "2.8.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
504+
version = "2.8.4", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
505505
)

tensorflow_serving/model_servers/version.h

+1-1
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 8
27-
#define TF_MODELSERVER_PATCH_VERSION 3
27+
#define TF_MODELSERVER_PATCH_VERSION 4
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 "-rc1"

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

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)