Prep for 1.4.3 release
authorDaniel Roy Greenfeld <pydanny@gmail.com>
Fri, 15 Jun 2018 04:30:13 +0000 (21:30 -0700)
committerDaniel Roy Greenfeld <pydanny@gmail.com>
Fri, 15 Jun 2018 04:30:13 +0000 (21:30 -0700)
AUTHORS.rst
HISTORY.rst
cached_property.py
setup.py

index 4e5f41152d68153617a803ba734c57dc31574722..c7ad44b94438f0f04a59332207c61851dbda57c9 100644 (file)
@@ -18,3 +18,4 @@ Contributors
 * Ionel Cristian Mărieș (@ionelmc)
 * Malyshev Artem (@proofit404)
 * Volker Braun (@vbraun)
+* Anthony Sottile (@asottile)
index d7f06b55bad36db95b83c02a2f900653db62a151..5fa9238ff15b308491862d7fceb1b827172f0fa9 100644 (file)
@@ -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)
 ++++++++++++++++++
 
index 0410791b036efdc4c8f28465e9e8f8d0d26a0ffa..a06be97a19b83eefbb91daa900c720a120afb029 100644 (file)
@@ -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
index bb1ff664ea7fca99071a3e80010a1c8ef98a7630..aaa32795dbc35872dcf15c4a4b4bfe7d996bcf3c 100755 (executable)
--- 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):