Version update.

This commit is contained in:
Goldie Gadde 2019-06-04 05:06:27 -07:00
parent 5859e87317
commit 46b5bd8cfe
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ limitations under the License.
// TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1",
// "-beta", "-rc", "-rc.1")
#define TF_VERSION_SUFFIX "-alpha0"
#define TF_VERSION_SUFFIX "-beta0"
#define TF_STR_HELPER(x) #x
#define TF_STR(x) TF_STR_HELPER(x)

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.0-alpha0'
_VERSION = '2.0.0-beta0'
REQUIRED_PACKAGES = [
'absl-py >= 0.7.0',
@ -62,8 +62,8 @@ REQUIRED_PACKAGES = [
'opt_einsum >= 2.3.2',
'six >= 1.10.0',
'protobuf >= 3.6.1',
'tb-nightly >= 1.14.0a20190301, < 1.14.0a20190302',
'tf-estimator-nightly >= 1.14.0.dev2019030115, < 1.14.0.dev2019030116',
'tb-nightly >= 1.14.0a20190603, < 1.14.0a20190604',
'tf-estimator-nightly >= 1.14.0.dev2019060401, < 1.14.0.dev2019060402',
'termcolor >= 1.1.0',
'wrapt >= 1.11.1',
]