Skip to content

Commit

Permalink
[skip ci] prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mtik00 committed Apr 11, 2018
1 parent 6b60289 commit 234836a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion yamicache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 234836a

Please sign in to comment.