diff --git a/README.md b/README.md index 64c42c9..1d26271 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://travis-ci.org/iambrandontaylor/django-admin-sortable.svg?branch=master)](https://travis-ci.org/iambrandontaylor/django-admin-sortable) -Current version: 2.0.16 +Current version: 2.0.17 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, @@ -496,9 +496,9 @@ ordering on top of that just seemed a little much in my opinion. ### Status django-admin-sortable is currently used in production. -### What's new in 2.0.16? -- Simplification of admin url patterns -- Fixes for sortable lists when using Django CMS +### What's new in 2.0.17? +- Fixed placement of icons for inline sortables +- Update to allow django-admin-sortable to play nice with other apps that define `change_form_template` value as a `@property` Thanks to [@vstoykov](https://github.com/vstoykov) for both contributions. diff --git a/README.rst b/README.rst index 9252cd7..77f78b0 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ Django Admin Sortable |Build Status| -Current version: 2.0.16 +Current version: 2.0.17 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, @@ -611,11 +611,12 @@ Status django-admin-sortable is currently used in production. -What's new in 2.0.16? +What's new in 2.0.17? ~~~~~~~~~~~~~~~~~~~~~ -- Simplification of admin url patterns -- Fixes for sortable lists when using Django CMS +- Fixed placement of icons for inline sortables +- Update to allow django-admin-sortable to play nice with other apps + that define ``change_form_template`` value as a ``@property`` Thanks to [@vstoykov](https://github.com/vstoykov) for both contributions. diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 2dbafec..d7aee9e 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 16) +VERSION = (2, 0, 17) DEV_N = None diff --git a/adminsortable/admin.py b/adminsortable/admin.py old mode 100755 new mode 100644