From 472ebcb21b372610e3fae60806c1cf06f6a13a7c Mon Sep 17 00:00:00 2001 From: Daniel Feldroy Date: Mon, 21 Sep 2020 11:26:13 -0700 Subject: [PATCH] Prep for release of version 1.5.2 --- HISTORY.rst | 8 ++++++++ cached_property.py | 2 +- setup.py | 5 ++--- 3 files changed, 11 insertions(+), 4 deletions(-) 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", -- 2.30.2