summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-01-16 12:37:40 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2014-01-16 12:37:40 -0500
commit1f6c6b50fed188ba68c2e98a3798a94de5df9307 (patch)
tree602ebdabbe0d5019cc571d4b394bb04e9a935e2b
parent73080395f042e664b16b8b1f1bbf2c5fefc21d79 (diff)
downloaddogpile-cache-1f6c6b50fed188ba68c2e98a3798a94de5df9307.tar.gz
- changelog for #57
-rw-r--r--docs/build/changelog.rst14
-rw-r--r--dogpile/cache/__init__.py2
2 files changed, 15 insertions, 1 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 18fe2a1..e765294 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -2,6 +2,20 @@
Changelog
==============
.. changelog::
+ :version: 0.5.4
+
+ .. change::
+ :tags: bug
+ :tickets: 57
+ :pullreq: 13
+
+ The :func:`.coerce_string_conf` function, which is used by
+ :meth:`.Region.configure_from_config`, will now recognize floating point
+ values when parsing conf strings and deliver them as such; this supports
+ non-integer values such as Redis ``lock_sleep``. Pullreq courtesy
+ Jeff Dairiki.
+
+.. changelog::
:version: 0.5.3
:released: Wed Jan 8 2014
diff --git a/dogpile/cache/__init__.py b/dogpile/cache/__init__.py
index 4b1cf60..7cd49ea 100644
--- a/dogpile/cache/__init__.py
+++ b/dogpile/cache/__init__.py
@@ -1,3 +1,3 @@
-__version__ = '0.5.3'
+__version__ = '0.5.4'
from .region import CacheRegion, register_backend, make_region