From 1ebf86b4aaa8b578c2cfd528d861c0dcf0c09226 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Tue, 8 Apr 2014 07:52:26 -0400 Subject: [PATCH] Updated README. Version bump to 1.6.7 --- README.md | 6 +++--- adminsortable/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 634f6f0..1dae430 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index b0cb5fc..b639327 100755 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 6, 6) # following PEP 386 +VERSION = (1, 6, 7) # following PEP 386 DEV_N = None diff --git a/setup.py b/setup.py index 82d4b7f..7ae4a9e 100644 --- a/setup.py +++ b/setup.py @@ -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',