Skip to content

Commit

Permalink
Prepare v3.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkem committed Nov 4, 2018
1 parent eac1c25 commit 90d3507
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,18 @@
v3.0.0 (2018-11-04)
-------------------

- Officially support Python 3.7.

- Drop Python 3.3 support (breaking change).

- Remove ``missing`` cache constructor parameter (breaking change).

- Remove ``self`` from ``@cachedmethod`` key arguments (breaking
change).

- Add support for ``maxsize=None`` in ``cachetools.func`` decorators.


v2.1.0 (2018-05-12)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion cachetools/__init__.py
Expand Up @@ -16,7 +16,7 @@
'cached', 'cachedmethod'
)

__version__ = '2.1.0'
__version__ = '3.0.0'

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

0 comments on commit 90d3507

Please sign in to comment.