diff --git a/README.md b/README.md index 21fa22b..1ec0f89 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Django Admin Sortable -Current version: 1.6.2 +Current version: 1.6.3 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, @@ -293,11 +293,9 @@ 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.2? -- Faster query counting - thanks [PyKaB](https://github.com/PyKaB) -- Updated jQueryUI to be compatible with jQuery 1.9.x or higher. -- Django 1.6 compatibility, with [fixes for inline models](https://github.com/iambrandontaylor/django-admin-sortable/issues/64). -- Fixed the link to jQueryUI in the admin sortable change form (facepalm) +### What's new in 1.6.3? +- German localization - danke [Alp-Phone](https://github.com/Alp-Phone) +- JavaScript drag and drop handlers now work as expected if only Generic Inline models are present ### Future diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 80b6f32..eede570 100755 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 6, 2) # following PEP 386 +VERSION = (1, 6, 3) # following PEP 386 DEV_N = None