From 2ef9934b3f28b40c51c2d5f904a5e8d82c755135 Mon Sep 17 00:00:00 2001 From: Christopher Suter Date: Thu, 19 Jul 2018 12:05:56 -0700 Subject: [PATCH] Increment version number 0.2.0rc0 -> 0.2.0 PiperOrigin-RevId: 205279145 --- 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 4f0fcf37f4..49159eec0a 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.2.0rc0' +VERSION = '0.2.0' REQUIRED_PACKAGES = [ 'six >= 1.10.0', diff --git a/tensorflow_probability/python/__init__.py b/tensorflow_probability/python/__init__.py index 2a02cdcb70..ec2a2754a3 100644 --- a/tensorflow_probability/python/__init__.py +++ b/tensorflow_probability/python/__init__.py @@ -50,6 +50,6 @@ 'vi', ] -__version__ = '0.2.0-rc0' +__version__ = '0.2.0' remove_undocumented(__name__, _allowed_symbols)