Prep for release of version 1.5.2
authorDaniel Feldroy <daniel@feldroy.com>
Mon, 21 Sep 2020 18:26:13 +0000 (11:26 -0700)
committerDaniel Feldroy <daniel@feldroy.com>
Mon, 21 Sep 2020 18:26:13 +0000 (11:26 -0700)
HISTORY.rst
cached_property.py
setup.py

index e7dbf473424bef7790965619ae7f436f6822b7e0..f79a5d660598bff673b5e0d224a9467cb8f819bf 100644 (file)
@@ -3,6 +3,14 @@
 History
 -------
 
+1.5.2 (2020-09-21)
+++++++++++++++++++
+
+* Add formal support for Python 3.8
+* Remove formal support for Python 3.4
+* Switch from Travis to GitHub actions
+* Made tests pass flake8 for Python 2.7
+
 1.5.1 (2018-08-05)
 ++++++++++++++++++
 
index 3e530fc5f0320fcc6b3be4eb7e3ff31f8796c662..3135871bfb0d9cda0a4c4eac6cdf8c47d890a289 100644 (file)
@@ -2,7 +2,7 @@
 
 __author__ = "Daniel Greenfeld"
 __email__ = "pydanny@gmail.com"
-__version__ = "1.5.1"
+__version__ = "1.5.2"
 __license__ = "BSD"
 
 from functools import wraps
index 6759c399ceb05e6084ae0a98c100208b04c24a17..ec10211b18bf23d4fe178add0a26203df86328f9 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ try:
 except ImportError:
     from distutils.core import setup
 
-__version__ = "1.5.1"
+__version__ = "1.5.2"
 
 
 def read(fname):
@@ -54,8 +54,7 @@ setup(
         "Natural Language :: English",
         "Programming Language :: Python :: 2",
         "Programming Language :: Python :: 2.7",
-        "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.4",        
+        "Programming Language :: Python :: 3",     
         "Programming Language :: Python :: 3.5",
         "Programming Language :: Python :: 3.6",
         "Programming Language :: Python :: 3.7",