Update to Python 3.6
[cached-property.git] / HISTORY.rst
1 .. :changelog:
2
3 History
4 -------
5
6 1.3.1 (2017-09-21)
7 ++++++++++++++++++
8
9 * Validate for Python 3.6
10
11
12 1.3.0 (2015-11-24)
13 ++++++++++++++++++
14
15 * Drop some non-ASCII characters from HISTORY.rst, thanks to @AdamWill
16 * Added official support for Python 3.5, thanks to @pydanny and @audreyr
17 * Removed confusingly placed lock from example, thanks to @ionelmc
18 * Corrected invalidation cache documentation, thanks to @proofit404
19 * Updated to latest Travis-CI environment, thanks to @audreyr
20
21 1.2.0 (2015-04-28)
22 ++++++++++++++++++
23
24 * Overall code and test refactoring, thanks to @gsakkis
25 * Allow the del statement for resetting cached properties with ttl instead of del obj._cache[attr], thanks to @gsakkis.
26 * Uncovered a bug in PyPy, https://bitbucket.org/pypy/pypy/issue/2033/attributeerror-object-attribute-is-read, thanks to @gsakkis
27 * Fixed threaded_cached_property_with_ttl to actually be thread-safe, thanks to @gsakkis
28
29 1.1.0 (2015-04-04)
30 ++++++++++++++++++
31
32 * 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
33 * Fixed typo in README, thanks to @zoidbergwill
34
35 1.0.0 (2015-02-13)
36 ++++++++++++++++++
37
38 * Added timed to expire feature to ``cached_property`` decorator.
39 * **Backwards incompatiblity**: Changed ``del monopoly.boardwalk`` to ``del monopoly['boardwalk']`` in order to support the new TTL feature.
40
41 0.1.5 (2014-05-20)
42 ++++++++++++++++++
43
44 * Added threading support with new ``threaded_cached_property`` decorator
45 * Documented cache invalidation
46 * Updated credits
47 * Sourced the bottle implementation
48
49 0.1.4 (2014-05-17)
50 ++++++++++++++++++
51
52 * Fix the dang-blarged py_modules argument.
53
54 0.1.3 (2014-05-17)
55 ++++++++++++++++++
56
57 * Removed import of package into ``setup.py``
58
59 0.1.2 (2014-05-17)
60 ++++++++++++++++++
61
62 * Documentation fixes. Not opening up a RTFD instance for this because it's so simple to use.
63
64 0.1.1 (2014-05-17)
65 ++++++++++++++++++
66
67 * setup.py fix. Whoops!
68
69 0.1.0 (2014-05-17)
70 ++++++++++++++++++
71
72 * First release on PyPI.