From d6f9bab515acb85741c18c553d5ceae5f9375be7 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 5 Sep 2018 08:23:58 -0700 Subject: [PATCH] Release 1.5.0 --- HISTORY.rst | 7 ++++++- cached_property.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) 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): -- 2.30.2