From 740d3fff15cbbc655ddc6cfcc7b7114eb60b89ef Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Mon, 22 Dec 2014 10:37:44 -0500 Subject: [PATCH] Version bump to 1.7.9. Updated README. --- README.md | 7 +++---- adminsortable/__init__.py | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 88f62b7..8456771 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.8 +Current version: 1.7.9 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,9 +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.8? -- Limited support for self-referential SortableForeignKeys -- Improved support for sortable models that have a foreign key to a non-sortable parent +### What's new in 1.7.9? +- Improved support for Django 1.5.x ### Deprecation warnings diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index d9ba222..118e60f 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 7, 8) # following PEP 386 +VERSION = (1, 7, 9) # following PEP 386 DEV_N = None