From 455e5304aa125d2f004b73e29a082a6e3e897cf7 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Sat, 14 Nov 2015 21:34:36 -0500 Subject: [PATCH] Version bump to 2.0.5. Updated readme. --- README.md | 6 +++--- adminsortable/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 48034f2..3172a57 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.4 +Current version: 2.0.5 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, @@ -457,8 +457,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 2.0.4? -- Faster utilities checks for sorting status. Thanks [@syphar](https://github.com/syphar)! +### What's new in 2.0.5? +- Just a minor maintenance release to remove a deprocated template tag in preparation for Django 1.9. Thanks [@itbabu](https://github.com/itbabu)! ### Future diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index b99b384..7505efe 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 4) # following PEP 386 +VERSION = (2, 0, 5) # following PEP 386 DEV_N = None