1.1.0 (2015-04-04)
++++++++++++++++++
+* 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.
* Fixed typo in README, thanks to @zoidbergwill.
1.0.0 (2015-02-13)
>>> monopoly.boardwalk
550
>>> # invalidate the cache
- >>> del monopoly['boardwalk']
+ >>> del monopoly.boardwalk
>>> # request the boardwalk property again
>>> monopoly.boardwalk
600
3
>>> monopoly.dice
3
+ >>> # This cache clearing does not always work, see note below.
+ >>> del monopoly['dice']
+ >>> monopoly.dice
+ 6
**Note:** The ``ttl`` tools do not reliably allow the clearing of the cache. This
is why they are broken out into seperate tools. See https://github.com/pydanny/cached-property/issues/16.
except ImportError:
from distutils.core import setup
-__version__ = '1.0.0'
+__version__ = '1.1.0'
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')