Skip to content

Commit

Permalink
Update version for 2.6.5 release. (#2013)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 authored Jun 15, 2022
1 parent 7a008a8 commit df85ef7
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 = "5269e5b646ff101ddb9cf74bfe864a1bb64d61c78c5648ab2277cd505f93052b",
git_commit = "92a6bb06549e74a8bd8cdb8e28552496e5520007",
sha256 = "dc7673454adbc973a0dc57af19fb61539157409a18c04d8c1388dd76871e71bb",
git_commit = "6b54e9fa35d6261adae9565f18cde359003b551b",
)

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

# Build with '-c opt'
Expand All @@ -503,5 +503,5 @@ pkg_deb(
homepage = "https://github.com/tensorflow/serving",
maintainer = "TensorFlow Serving team",
package = "tensorflow-model-server-universal",
version = "2.6.3", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
version = "2.6.5", # 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 6
#define TF_MODELSERVER_PATCH_VERSION 3
#define TF_MODELSERVER_PATCH_VERSION 5
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
#define TF_MODELSERVER_VERSION_SUFFIX "-rc2"
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.6.3'
_VERSION = '2.6.5'
# Have this by default be open; releasing a new version will lock to TF version
_TF_VERSION = '>=2.6.3,<3'
_TF_VERSION = '>=2.6.5,<3'
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')

project_name = 'tensorflow-serving-api'
Expand Down

0 comments on commit df85ef7

Please sign in to comment.