Commit 49326a59 authored by Sean Bleier's avatar Sean Bleier

Bumps version to 0.12.0.

parent 7b9d4cc5
......@@ -2,12 +2,20 @@
Redis Django Cache Backend
==========================
A simple Redis cache backend for Django
A cache backend for Django using the Redis datastructure server.
Changelog
=========
0.12.0
------
* Keys can now be kept alive indefinitely by setting the timeout to None,
e.g. `cache.set('key', 'value', timeout=None)`
* Adds `ttl` method to the cache. `cache.ttl(key)` will return the number of
seconds before it expires or None if the key is not volitile.
0.11.1
------
......@@ -101,6 +109,7 @@ On Django >= 1.3::
},
}
.. _redis: http://redis.io
.. _redis-py: http://github.com/andymccurdy/redis-py/
.. _hiredis: https://github.com/pietern/hiredis-py
......@@ -5,7 +5,7 @@ setup(
url = "http://github.com/sebleier/django-redis-cache/",
author = "Sean Bleier",
author_email = "sebleier@gmail.com",
version = "0.11.1",
version = "0.12.0",
packages = ["redis_cache"],
description = "Redis Cache Backend for Django",
install_requires=['redis>=2.4.5',],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment