From 2f05b39e0f07f468cfc824c7ebc07d903268e8b8 Mon Sep 17 00:00:00 2001 From: Daniel Roy Greenfeld Date: Thu, 14 Jun 2018 21:30:13 -0700 Subject: [PATCH] Prep for 1.4.3 release --- AUTHORS.rst | 1 + HISTORY.rst | 5 +++++ cached_property.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 4e5f411..c7ad44b 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -18,3 +18,4 @@ Contributors * Ionel Cristian Mărieș (@ionelmc) * Malyshev Artem (@proofit404) * Volker Braun (@vbraun) +* Anthony Sottile (@asottile) diff --git a/HISTORY.rst b/HISTORY.rst index d7f06b5..5fa9238 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +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 0410791..a06be97 100644 --- a/cached_property.py +++ b/cached_property.py @@ -2,7 +2,7 @@ __author__ = "Daniel Greenfeld" __email__ = "pydanny@gmail.com" -__version__ = "1.4.2" +__version__ = "1.4.3" __license__ = "BSD" from time import time diff --git a/setup.py b/setup.py index bb1ff66..aaa3279 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ try: except ImportError: from distutils.core import setup -__version__ = "1.4.2" +__version__ = "1.4.3" def read(fname): -- 2.30.2