Skip to content

Commit

Permalink
Prepare v2.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkem committed Oct 3, 2016
1 parent 1770a71 commit e27332b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
v2.0.0 (2016-10-03)
-------------------

- Drop Python 3.2 support (breaking change).

- Drop support for deprecated features (breaking change).

- Move key functions to separate package (breaking change).

- Accept non-integer ``maxsize`` in ``Cache.__repr__()``.


v1.1.6 (2016-04-01)
-------------------

Expand Down
4 changes: 1 addition & 3 deletions cachetools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
'cached', 'cachedmethod'
)

__version__ = '1.1.6'

_default = [] # evaluates to False
__version__ = '2.0.0'

if hasattr(functools.update_wrapper(lambda f: f(), lambda: 42), '__wrapped__'):
_update_wrapper = functools.update_wrapper
Expand Down

0 comments on commit e27332b

Please sign in to comment.