From fc58ee51f0339cf46efb1f29a5136d08296d109a Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Sat, 9 Jul 2016 18:26:00 -0400 Subject: [PATCH] Updated readme. Version bump to 2.0.18 --- README.md | 9 ++++----- README.rst | 11 ++++------- adminsortable/__init__.py | 2 +- 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 1d26271..dec94cb 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.17 +Current version: 2.0.18 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,11 +496,10 @@ 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.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` +### What's new in 2.0.18? +- Fix missing admin icons in Django 1.9 -Thanks to [@vstoykov](https://github.com/vstoykov) for both contributions. +Thanks to [@shjohnson-pi](https://github.com/shjohnson-pi) ### Future - Better template support for foreign keys that are self referential. If someone would like to take on rendering recursive sortables, that would be super. diff --git a/README.rst b/README.rst index 77f78b0..c56e7a2 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ Django Admin Sortable |Build Status| -Current version: 2.0.17 +Current version: 2.0.18 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,15 +611,12 @@ Status django-admin-sortable is currently used in production. -What's new in 2.0.17? +What's new in 2.0.18? ~~~~~~~~~~~~~~~~~~~~~ -- 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`` +- Fix missing admin icons in Django 1.9 -Thanks to [@vstoykov](https://github.com/vstoykov) for both -contributions. +Thanks to [@shjohnson-pi](https://github.com/shjohnson-pi) Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index d7aee9e..1106809 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 17) +VERSION = (2, 0, 18) DEV_N = None