From: Daniel Date: Wed, 5 Sep 2018 15:23:58 +0000 (-0700) Subject: Release 1.5.0 X-Git-Tag: 1.5.0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fa47fe5d9728c4ad9ec9b804fc13aaeb06597f3b;p=cached-property.git Release 1.5.0 --- diff --git a/HISTORY.rst b/HISTORY.rst index 3192806..49d141a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,12 +3,17 @@ History ------- -1.4.3 (2018-07-31) +1.5.0 (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 + 1.4.2 (2018-04-08) ++++++++++++++++++ diff --git a/cached_property.py b/cached_property.py index a06be97..479e3eb 100644 --- a/cached_property.py +++ b/cached_property.py @@ -2,7 +2,7 @@ __author__ = "Daniel Greenfeld" __email__ = "pydanny@gmail.com" -__version__ = "1.4.3" +__version__ = "1.5.0" __license__ = "BSD" from time import time diff --git a/setup.py b/setup.py index b7a7fb5..ab228b9 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ try: except ImportError: from distutils.core import setup -__version__ = "1.4.3" +__version__ = "1.5.0" def read(fname):