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