From ff3ffdc9314702e2fe8debe1b50296eb52def8ae Mon Sep 17 00:00:00 2001 From: Brian Patton <22173987+brianwa84@users.noreply.github.com> Date: Thu, 6 Jun 2019 12:35:15 -0400 Subject: [PATCH 1/2] Increment rc version --- tensorflow_probability/python/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow_probability/python/version.py b/tensorflow_probability/python/version.py index ca87cf92e1..21d1b16263 100644 --- a/tensorflow_probability/python/version.py +++ b/tensorflow_probability/python/version.py @@ -24,7 +24,7 @@ # stable release (indicated by `_VERSION_SUFFIX = ''`). Outside the context of a # release branch, the current version is by default assumed to be a # 'development' version, labeled 'dev'. -_VERSION_SUFFIX = 'rc0' +_VERSION_SUFFIX = 'rc1' # Example, '0.4.0-dev' __version__ = '.'.join([ From f38d975f6aec5e68adff98ca49cb2f278d7e0683 Mon Sep 17 00:00:00 2001 From: Brian Patton <22173987+brianwa84@users.noreply.github.com> Date: Wed, 19 Jun 2019 12:16:51 -0400 Subject: [PATCH 2/2] Update from rc to stable. --- tensorflow_probability/python/version.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tensorflow_probability/python/version.py b/tensorflow_probability/python/version.py index 21d1b16263..08a836e723 100644 --- a/tensorflow_probability/python/version.py +++ b/tensorflow_probability/python/version.py @@ -24,7 +24,7 @@ # stable release (indicated by `_VERSION_SUFFIX = ''`). Outside the context of a # release branch, the current version is by default assumed to be a # 'development' version, labeled 'dev'. -_VERSION_SUFFIX = 'rc1' +_VERSION_SUFFIX = '' # Example, '0.4.0-dev' __version__ = '.'.join([ @@ -34,3 +34,4 @@ ]) if _VERSION_SUFFIX: __version__ = '{}-{}'.format(__version__, _VERSION_SUFFIX) +if __version__.endswith('dev'): __version__ += '20190613'