From be29289d302f6393e07db7afd9b7784477d5db72 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Mon, 14 Mar 2016 11:40:25 -0400 Subject: [PATCH] Bumping version due to PyPi error during upload. --- README.md | 4 ++-- README.rst | 4 ++-- adminsortable/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2daffcb..a325786 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.14 +Current version: 2.0.15 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,7 +496,7 @@ 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.14? +### What's new in 2.0.15? - Refactored exception handling when determining `order_field_name` ### Future diff --git a/README.rst b/README.rst index c05110c..adb19f6 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ Django Admin Sortable |Build Status| -Current version: 2.0.14 +Current version: 2.0.15 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, @@ -612,7 +612,7 @@ Status django-admin-sortable is currently used in production. -What's new in 2.0.14? +What's new in 2.0.15? ~~~~~~~~~~~~~~~~~~~~~ - Refactored exception handling when determining ``order_field_name`` diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 00971ab..cbbc575 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 14) +VERSION = (2, 0, 15) DEV_N = None