From: Daniel Feldroy Date: Mon, 21 Sep 2020 18:26:13 +0000 (-0700) Subject: Prep for release of version 1.5.2 X-Git-Tag: 1.5.2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=472ebcb21b372610e3fae60806c1cf06f6a13a7c;p=cached-property.git Prep for release of version 1.5.2 --- diff --git a/HISTORY.rst b/HISTORY.rst index e7dbf47..f79a5d6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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) ++++++++++++++++++ diff --git a/cached_property.py b/cached_property.py index 3e530fc..3135871 100644 --- a/cached_property.py +++ b/cached_property.py @@ -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 diff --git a/setup.py b/setup.py index 6759c39..ec10211 100755 --- 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",