Update HISTORY.rst
[cached-property.git] / HISTORY.rst
1 .. :changelog:
2
3 History
4 -------
5
6 1.2.0 (2015-04-28
7 +++++++++++++++++
8
9 * Overall code and test refactoring, thanks to @gsakkis
10 * Allow the del statement for resetting cached properties with ttl instead of del obj._cache[attr], thanks to @gsakkis.
11 * Uncovered a bug in PyPy, https://bitbucket.org/pypy/pypy/issue/2033/attributeerror-object-attribute-is-read, thanks to @gsakkis
12 * Fixed threaded_cached_property_with_ttl to actually be thread-safe, thanks to @gsakkis
13
14 1.1.0 (2015-04-04)
15 ++++++++++++++++++
16
17 * Regression: As the cache was not always clearing, we’ve broken out the time to expire feature to it’s own set of specific tools, thanks to @pydanny
18 * Fixed typo in README, thanks to @zoidbergwill
19
20 1.0.0 (2015-02-13)
21 ++++++++++++++++++
22
23 * Added timed to expire feature to ``cached_property`` decorator.
24 * **Backwards incompatiblity**: Changed ``del monopoly.boardwalk`` to ``del monopoly['boardwalk']`` in order to support the new TTL feature.
25
26 0.1.5 (2014-05-20)
27 ++++++++++++++++++
28
29 * Added threading support with new ``threaded_cached_property`` decorator
30 * Documented cache invalidation
31 * Updated credits
32 * Sourced the bottle implementation
33
34 0.1.4 (2014-05-17)
35 ++++++++++++++++++
36
37 * Fix the dang-blarged py_modules argument.
38
39 0.1.3 (2014-05-17)
40 ++++++++++++++++++
41
42 * Removed import of package into ``setup.py``
43
44 0.1.2 (2014-05-17)
45 ++++++++++++++++++
46
47 * Documentation fixes. Not opening up a RTFD instance for this because it's so simple to use.
48
49 0.1.1 (2014-05-17)
50 ++++++++++++++++++
51
52 * setup.py fix. Whoops!
53
54 0.1.0 (2014-05-17)
55 ++++++++++++++++++
56
57 * First release on PyPI.