Version 0.6.0.

This commit is contained in:
Bertrand Bordage 2014-10-06 15:30:42 +02:00
parent a4d20241e1
commit 71eb00ac73
3 changed files with 10 additions and 5 deletions

View file

@ -1,6 +1,12 @@
Whats new in django-cachalot?
==============================
0.6.0
-----
- Adds memcached support
0.5.0
-----

View file

@ -24,9 +24,9 @@ Requirements
- Django 1.6 or 1.7
- Python 2.6, 2.7, 3.2, 3.3, or 3.4
- `locmem <https://docs.djangoproject.com/en/1.7/topics/cache/#local-memory-caching>`_
or `django-redis <https://github.com/niwibe/django-redis>`_
(memcached coming soon)
- `locmem <https://docs.djangoproject.com/en/1.7/topics/cache/#local-memory-caching>`_,
`django-redis <https://github.com/niwibe/django-redis>`_ or
`memcached <https://docs.djangoproject.com/en/1.7/topics/cache/#memcached>`_
- SQLite, PostgreSQL or MySQL (it should work with Oracle,
but I dont have 17.5k$ to test)
@ -134,7 +134,6 @@ For version 1.0
- Find out if its thread-safe and test it
- Write tests for `multi-table inheritance <https://docs.djangoproject.com/en/1.7/topics/db/models/#multi-table-inheritance>`_
- Add memcached support
- Handle multiple databases
- Add invalidation on migrations in Django 1.7 (& South?)

View file

@ -1,4 +1,4 @@
from .settings import cachalot_settings
__version__ = (0, 5, 0, 'post')
__version__ = (0, 6, 0)
version_string = '.'.join(str(n) for n in __version__)