Skip to content

Commit 472ebcb

Browse files
committed
Prep for release of version 1.5.2
1 parent df2be96 commit 472ebcb

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
History
44
-------
55

6+
1.5.2 (2020-09-21)
7+
++++++++++++++++++
8+
9+
* Add formal support for Python 3.8
10+
* Remove formal support for Python 3.4
11+
* Switch from Travis to GitHub actions
12+
* Made tests pass flake8 for Python 2.7
13+
614
1.5.1 (2018-08-05)
715
++++++++++++++++++
816

cached_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Daniel Greenfeld"
44
__email__ = "[email protected]"
5-
__version__ = "1.5.1"
5+
__version__ = "1.5.2"
66
__license__ = "BSD"
77

88
from functools import wraps

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
except ImportError:
1111
from distutils.core import setup
1212

13-
__version__ = "1.5.1"
13+
__version__ = "1.5.2"
1414

1515

1616
def read(fname):
@@ -54,8 +54,7 @@ def read(fname):
5454
"Natural Language :: English",
5555
"Programming Language :: Python :: 2",
5656
"Programming Language :: Python :: 2.7",
57-
"Programming Language :: Python :: 3",
58-
"Programming Language :: Python :: 3.4",
57+
"Programming Language :: Python :: 3",
5958
"Programming Language :: Python :: 3.5",
6059
"Programming Language :: Python :: 3.6",
6160
"Programming Language :: Python :: 3.7",

0 commit comments

Comments
 (0)