From: Daniel Date: Wed, 5 Sep 2018 15:30:37 +0000 (-0700) Subject: Skip 1.5.0 because of borked RST X-Git-Tag: 1.5.1^0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=55802256ab92b59367154e0f18e665e5c42b832b;p=cached-property.git Skip 1.5.0 because of borked RST --- diff --git a/HISTORY.rst b/HISTORY.rst index 49d141a..e7dbf47 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,14 +3,14 @@ History ------- -1.5.0 (2018-08-05) +1.5.1 (2018-08-05) ++++++++++++++++++ * Added formal support for Python 3.7 * Removed formal support for Python 3.3 1.4.3 (2018-06-14) -++++++++++++++++++ ++++++++++++++++++++ * Catch SyntaxError from asyncio import on older versions of Python, thanks to @asottile diff --git a/cached_property.py b/cached_property.py index 479e3eb..125f619 100644 --- a/cached_property.py +++ b/cached_property.py @@ -2,7 +2,7 @@ __author__ = "Daniel Greenfeld" __email__ = "pydanny@gmail.com" -__version__ = "1.5.0" +__version__ = "1.5.1" __license__ = "BSD" from time import time diff --git a/setup.py b/setup.py index ab228b9..3506fe1 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ try: except ImportError: from distutils.core import setup -__version__ = "1.5.0" +__version__ = "1.5.1" def read(fname):