diff --git a/README.md b/README.md index 79d521e..242a235 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.2 +Current version: 2.0.3 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.2? -- Enabled `show_change_link` on inlines. Thanks [@jorge-marques](https://github.com/jorge-marques)! +### What's new in 2.0.3? +- Fixed a bug when sorting in descending order. Thanks [@zakdoek](https://github.com/zakdoek)! ### Future diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index b73ede1..883953e 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 2) # following PEP 386 +VERSION = (2, 0, 3) # following PEP 386 DEV_N = None diff --git a/sample_project/database/test_project.sqlite b/sample_project/database/test_project.sqlite index c3a5830..6f5d859 100644 Binary files a/sample_project/database/test_project.sqlite and b/sample_project/database/test_project.sqlite differ