From 0af13803fb6f2196ea00b168be944064db3e7f60 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Mon, 12 Jan 2015 22:56:38 -0500 Subject: [PATCH] Version bump to 1.8.0. Updated readme. --- README.md | 8 ++++---- adminsortable/__init__.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fce3e35..e393bc5 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: 1.7.9.1 +Current version: 1.8.0 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, @@ -409,8 +409,8 @@ 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.7.9? -- Improved support for Django 1.5.x +### What's new in 1.8.0? +- Fixed an edge case for object assignment with self-referential models. Thanks [@tomd-aptivate](https://github.com/tomd-aptivate) ### Deprecation warnings @@ -422,7 +422,7 @@ These do not currently affect the functionality of django-admin-sortable and sho ### Future -- Support for foreign keys that are self referential +- Better template support for foreign keys that are self referential. If someone would like to take on rendering recursive sortables, that would be super. ### License diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 7d43b64..ed9429d 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 7, 9, 1) # following PEP 386 +VERSION = (1, 8, 0) # following PEP 386 DEV_N = None