aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2015-06-18 19:24:52 +0200
committerThomas Kemmer <tkemmer@computer.org>2015-06-18 19:29:54 +0200
commit0ca640f2c88f5a6767bb09da8cab5983665b6d98 (patch)
tree6593ff58c3a03af582ae3acdf3b1849784e26a9a
parent385ace836f2eb0f8979d62c037e25ea95de22f84 (diff)
downloadcachetools-0ca640f2c88f5a6767bb09da8cab5983665b6d98.tar.gz
Prepare v1.0.2.
-rw-r--r--CHANGES.rst9
-rw-r--r--cachetools/__init__.py2
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 915a939..759e764 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,12 @@
+1.0.2 2015-06-18
+----------------
+
+- Allow simple cache instances to be pickled.
+
+- Refactor ``Cache.getsizeof`` and ``Cache.missing`` default
+ implementation.
+
+
1.0.1 2015-06-06
----------------
diff --git a/cachetools/__init__.py b/cachetools/__init__.py
index b1360a1..c4b4253 100644
--- a/cachetools/__init__.py
+++ b/cachetools/__init__.py
@@ -15,4 +15,4 @@ __all__ = (
'lfu_cache', 'lru_cache', 'rr_cache', 'ttl_cache',
)
-__version__ = '1.0.1'
+__version__ = '1.0.2'