Merge pull request #45772 from tensorflow-jenkins/version-numbers-2.0.4-3081

Update version numbers for TensorFlow 2.0.4
This commit is contained in:
Mihai Maruseac 2020-12-17 09:20:00 -08:00 committed by GitHub
commit a0bb7cae4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ limitations under the License.
// tensorflow/tools/pip_package/setup.py
#define TF_MAJOR_VERSION 2
#define TF_MINOR_VERSION 0
#define TF_PATCH_VERSION 3
#define TF_PATCH_VERSION 4
// TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1",
// "-beta", "-rc", "-rc.1")

View File

@ -58,7 +58,7 @@ def register_extension_info(**kwargs):
# not contain rc or alpha, only numbers.
# Also update tensorflow/core/public/version.h
# and tensorflow/tools/pip_package/setup.py
VERSION = "2.0.3"
VERSION = "2.0.4"
VERSION_MAJOR = VERSION.split(".")[0]
def if_v2(a):

View File

@ -47,7 +47,7 @@ DOCLINES = __doc__.split('\n')
# result for pip.
# Also update tensorflow/tensorflow.bzl and
# tensorflow/core/public/version.h
_VERSION = '2.0.3'
_VERSION = '2.0.4'
REQUIRED_PACKAGES = [
'absl-py >= 0.7.0',