Skip to content

Commit

Permalink
Merge pull request #2050 from rtg0795/releng_20220906_143408
Browse files Browse the repository at this point in the history
Update version for 2.8.3 release.
  • Loading branch information
rtg0795 authored Sep 8, 2022
2 parents c554aa7 + 047f1ed commit 336842e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ workspace(name = "tf_serving")
load("//tensorflow_serving:repo.bzl", "tensorflow_http_archive")
tensorflow_http_archive(
name = "org_tensorflow",
sha256 = "8abbdb42bdf93fb9d957005ecdf4f5b7f6a7efa2fe251096824956cda4568000",
git_commit = "2ea19cbb575d076b4f521d3603211c8316ad5f8f",
sha256 = "d08bea09b8804d4f6a995ba5e98062faaf361b34a2051ca5f8a5d8090c339c97",
git_commit = "92a51d52ad199319e4f9de83fcbe970151dfed7e",
)

# 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 @@ -490,7 +490,7 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server",
version = "2.8.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.8.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)

# Build with '-c opt'
Expand All @@ -501,5 +501,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.8.2", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.8.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
)
2 changes: 1 addition & 1 deletion tensorflow_serving/model_servers/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ limitations under the License.

#define TF_MODELSERVER_MAJOR_VERSION 2
#define TF_MODELSERVER_MINOR_VERSION 8
#define TF_MODELSERVER_PATCH_VERSION 2
#define TF_MODELSERVER_PATCH_VERSION 3
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
#define TF_MODELSERVER_VERSION_SUFFIX "-rc1"
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 = '2.8.2'
_VERSION = '2.8.3'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.8.2,<3'
_TF_VERSION = '>=2.8.3,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit 336842e

Please sign in to comment.