From 344927a393262aecf700b830b487430030cffdb2 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Wed, 15 Jun 2016 20:55:42 -0400 Subject: [PATCH] Version 2.0.16 Changes Updated readme. Version bump to 2.0.16 --- README.md | 9 ++++++--- README.rst | 13 ++++++++----- adminsortable/__init__.py | 6 +++--- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index a325786..64c42c9 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.15 +Current version: 2.0.16 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,8 +496,11 @@ 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.15? -- Refactored exception handling when determining `order_field_name` +### What's new in 2.0.16? +- Simplification of admin url patterns +- Fixes for sortable lists when using Django CMS + +Thanks to [@vstoykov](https://github.com/vstoykov) for both contributions. ### 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 adb19f6..9252cd7 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ Django Admin Sortable |Build Status| -Current version: 2.0.15 +Current version: 2.0.16 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, @@ -50,7 +50,7 @@ Download django-admin-sortable from `source `__ 1. Unzip the directory and cd into the uncompressed project directory -2. +2. - Optional: Enable your virtualenv @@ -611,11 +611,14 @@ Status django-admin-sortable is currently used in production. - -What's new in 2.0.15? +What's new in 2.0.16? ~~~~~~~~~~~~~~~~~~~~~ -- Refactored exception handling when determining ``order_field_name`` +- Simplification of admin url patterns +- Fixes for sortable lists when using Django CMS + +Thanks to [@vstoykov](https://github.com/vstoykov) for both +contributions. Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index cbbc575..2dbafec 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,6 +1,6 @@ -VERSION = (2, 0, 15) -DEV_N = None - +VERSION = (2, 0, 16) +DEV_N = None + def get_version(): version = '{0}.{1}'.format(VERSION[0], VERSION[1])