Add in the Python and OS matrix
[cached-property.git] / HISTORY.rst
1 .. :changelog:
2
3 History
4 -------
5
6 1.5.1 (2018-08-05)
7 ++++++++++++++++++
8
9 * Added formal support for Python 3.7
10 * Removed formal support for Python 3.3
11
12 1.4.3 (2018-06-14)
13 +++++++++++++++++++
14
15 * Catch SyntaxError from asyncio import on older versions of Python, thanks to @asottile
16
17 1.4.2 (2018-04-08)
18 ++++++++++++++++++
19
20 * Really fixed tests, thanks to @pydanny
21
22 1.4.1 (2018-04-08)
23 ++++++++++++++++++
24
25 * Added conftest.py to manifest so tests work properly off the tarball, thanks to @dotlambda
26 * Ensured new asyncio tests didn't break Python 2.7 builds on Debian, thanks to @pydanny
27 * Code formatting via black, thanks to @pydanny and @ambv
28
29
30 1.4.0 (2018-02-25)
31 ++++++++++++++++++
32
33 * Added asyncio support, thanks to @vbraun
34 * Remove Python 2.6 support, whose end of life was 5 years ago, thanks to @pydanny
35
36
37 1.3.1 (2017-09-21)
38 ++++++++++++++++++
39
40 * Validate for Python 3.6
41
42
43 1.3.0 (2015-11-24)
44 ++++++++++++++++++
45
46 * Drop some non-ASCII characters from HISTORY.rst, thanks to @AdamWill
47 * Added official support for Python 3.5, thanks to @pydanny and @audreyr
48 * Removed confusingly placed lock from example, thanks to @ionelmc
49 * Corrected invalidation cache documentation, thanks to @proofit404
50 * Updated to latest Travis-CI environment, thanks to @audreyr
51
52 1.2.0 (2015-04-28)
53 ++++++++++++++++++
54
55 * Overall code and test refactoring, thanks to @gsakkis
56 * Allow the del statement for resetting cached properties with ttl instead of del obj._cache[attr], thanks to @gsakkis.
57 * Uncovered a bug in PyPy, https://bitbucket.org/pypy/pypy/issue/2033/attributeerror-object-attribute-is-read, thanks to @gsakkis
58 * Fixed threaded_cached_property_with_ttl to actually be thread-safe, thanks to @gsakkis
59
60 1.1.0 (2015-04-04)
61 ++++++++++++++++++
62
63 * Regression: As the cache was not always clearing, we've broken out the time to expire feature to its own set of specific tools, thanks to @pydanny
64 * Fixed typo in README, thanks to @zoidbergwill
65
66 1.0.0 (2015-02-13)
67 ++++++++++++++++++
68
69 * Added timed to expire feature to ``cached_property`` decorator.
70 * **Backwards incompatiblity**: Changed ``del monopoly.boardwalk`` to ``del monopoly['boardwalk']`` in order to support the new TTL feature.
71
72 0.1.5 (2014-05-20)
73 ++++++++++++++++++
74
75 * Added threading support with new ``threaded_cached_property`` decorator
76 * Documented cache invalidation
77 * Updated credits
78 * Sourced the bottle implementation
79
80 0.1.4 (2014-05-17)
81 ++++++++++++++++++
82
83 * Fix the dang-blarged py_modules argument.
84
85 0.1.3 (2014-05-17)
86 ++++++++++++++++++
87
88 * Removed import of package into ``setup.py``
89
90 0.1.2 (2014-05-17)
91 ++++++++++++++++++
92
93 * Documentation fixes. Not opening up a RTFD instance for this because it's so simple to use.
94
95 0.1.1 (2014-05-17)
96 ++++++++++++++++++
97
98 * setup.py fix. Whoops!
99
100 0.1.0 (2014-05-17)
101 ++++++++++++++++++
102
103 * First release on PyPI.