Skip to content

Commit

Permalink
Prepare v1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkem committed Aug 28, 2015
1 parent b6bc350 commit 6a4c6f0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,24 @@
1.1.0 2015-08-28
----------------

- Add ``@cached`` function decorator.

- Add ``hashkey`` and ``typedkey`` fuctions.

- Add `key` and `lock` arguments to ``@cachedmethod``.

- Set ``__wrapped__`` attributes for Python versions < 3.2.

- Move ``functools`` compatible decorators to ``cachetools.func``.

- Deprecate ``@cachedmethod`` `typed` argument.

- Deprecate `cache` attribute for ``@cachedmethod`` wrappers.

- Deprecate `getsizeof` and `lock` arguments for `cachetools.func`
decorator.


1.0.3 2015-06-26
----------------

Expand Down
2 changes: 1 addition & 1 deletion cachetools/__init__.py
Expand Up @@ -18,7 +18,7 @@
'lfu_cache', 'lru_cache', 'rr_cache', 'ttl_cache',
)

__version__ = '1.0.3'
__version__ = '1.1.0'

_default = [] # evaluates to False

Expand Down

0 comments on commit 6a4c6f0

Please sign in to comment.