From 55802256ab92b59367154e0f18e665e5c42b832b Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 5 Sep 2018 08:30:37 -0700 Subject: [PATCH] Skip 1.5.0 because of borked RST --- HISTORY.rst | 4 ++-- cached_property.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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): -- 2.30.2