From 234836a1c1adeab4aa2d519d65db0f3b2606bbea Mon Sep 17 00:00:00 2001 From: Timothy McFadden Date: Tue, 10 Apr 2018 23:49:59 -0600 Subject: [PATCH] [skip ci] prep for release --- HISTORY.rst | 7 +++++++ setup.py | 2 +- yamicache/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 67ebcea..22417d6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,13 @@ History ======= +0.5.1 (2018-04-10) +------------------ + +* Fix #8: Function default arguments were not handled. There was also a + potential cache miss if Python changed the order of `dict` keys. + + 0.5.0 (2018-03-23) ------------------ diff --git a/setup.py b/setup.py index c1b2748..03e057c 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='yamicache', - version='0.5.0', + version='0.5.1', description="Yet another in-memory caching package", long_description=readme + '\n\n' + history, author="Timothy McFadden", diff --git a/yamicache/__init__.py b/yamicache/__init__.py index 53bddbc..c7c0bfb 100644 --- a/yamicache/__init__.py +++ b/yamicache/__init__.py @@ -3,6 +3,6 @@ """Top-level package for yamicache.""" __author__ = """Timothy McFadden""" -__version__ = '0.5.0' +__version__ = '0.5.1' from .yamicache import Cache, nocache, override_timeout # noqa: F401