[bt] Release 2.0.17

Merged Pull Requests #146 and #147
master
Brandon Taylor 2016-06-23 22:04:07 -04:00
parent 54482b3bb3
commit ee857c7403
3 changed files with 10 additions and 9 deletions

View File

@ -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) [![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 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, 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 ### Status
django-admin-sortable is currently used in production. 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 - Fixed placement of icons for inline sortables
- Fixes for sortable lists when using Django CMS - 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. Thanks to [@vstoykov](https://github.com/vstoykov) for both contributions.

View File

@ -3,7 +3,7 @@ Django Admin Sortable
|Build Status| |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 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, 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. 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 - Fixed placement of icons for inline sortables
- Fixes for sortable lists when using Django CMS - 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 Thanks to [@vstoykov](https://github.com/vstoykov) for both
contributions. contributions.

View File

@ -1,4 +1,4 @@
VERSION = (2, 0, 16) VERSION = (2, 0, 17)
DEV_N = None DEV_N = None