Updated README.

Version bump to 1.6.7
master
Brandon Taylor 2014-04-08 07:52:26 -04:00
parent 29a05bcd63
commit 1ebf86b4aa
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# Django Admin Sortable
Current version: 1.6.6
Current version: 1.6.7
This project makes it easy to add drag-and-drop ordering to any model in
Django admin. Inlines for a sortable model may also be made sortable,
@ -316,8 +316,8 @@ ordering on top of that just seemed a little much in my opinion.
django-admin-sortable is currently used in production.
### What's new in 1.6.6?
- Multiple sorting_filters
### What's new in 1.6.7?
- Spanish localization. Thanks @jerivas!
### Future

View File

@ -1,4 +1,4 @@
VERSION = (1, 6, 6) # following PEP 386
VERSION = (1, 6, 7) # following PEP 386
DEV_N = None

View File

@ -8,7 +8,7 @@ except:
setup(
name='django-admin-sortable',
version=__import__('adminsortable').__version__,
description='Drag and drop sorting for models and inline models in Django admin',
description='Drag and drop sorting for models and inline models in Django admin.',
long_description=README,
license='APL',
author='Brandon Taylor',