diff --git a/setup.py b/setup.py index 7a6680a4fc..4f0fcf37f4 100644 --- a/setup.py +++ b/setup.py @@ -21,14 +21,14 @@ from setuptools.command.install import install as InstallCommandBase from setuptools.dist import Distribution -VERSION = '0.1.0rc1' +VERSION = '0.2.0rc0' REQUIRED_PACKAGES = [ 'six >= 1.10.0', 'numpy >= 1.11.1', ] -REQUIRED_TENSORFLOW_VERSION = '1.9.0rc1' +REQUIRED_TENSORFLOW_VERSION = '1.9.0' if '--gpu' in sys.argv: use_gpu = True diff --git a/tensorflow_probability/python/__init__.py b/tensorflow_probability/python/__init__.py index 35f45c0483..ff518f5ccb 100644 --- a/tensorflow_probability/python/__init__.py +++ b/tensorflow_probability/python/__init__.py @@ -49,6 +49,6 @@ 'vi', ] -__version__ = '0.1.0-rc1' +__version__ = '0.2.0-rc0' remove_undocumented(__name__, _allowed_symbols)