From 5e6fe17f6d1b64568b86f8d876fdaffda4022ba6 Mon Sep 17 00:00:00 2001 From: Christopher Suter Date: Fri, 15 Jun 2018 15:04:10 -0700 Subject: [PATCH] Append "rc0" to the version spec PiperOrigin-RevId: 200780050 --- setup.py | 2 +- tensorflow_probability/python/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 17f1a120f1..341e17dc87 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from setuptools.command.install import install as InstallCommandBase from setuptools.dist import Distribution -VERSION = '0.1.0' +VERSION = '0.1.0rc0' REQUIRED_PACKAGES = [ 'six >= 1.10.0', diff --git a/tensorflow_probability/python/__init__.py b/tensorflow_probability/python/__init__.py index 01bde809f0..dade7164c6 100644 --- a/tensorflow_probability/python/__init__.py +++ b/tensorflow_probability/python/__init__.py @@ -47,6 +47,6 @@ 'vi', ] -__version__ = '0.1.0' +__version__ = '0.1.0-rc0' remove_undocumented(__name__, _allowed_symbols)