diff --git a/README.md b/README.md index a213dd2..29fb251 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Django Admin Sortable -Current version: 1.7.1 +Current version: 1.7.2 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, @@ -316,9 +316,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.1? -- Fixed a CSS scoping issue that was causing stacked sortable items to not display the "move" cursor. -- Added Brazilian Portugese locale +### What's new in 1.7.2? +- Added form_url to change_view kwargs to allow overriding of change_view vis super(). Thanks [@clarkbarz](https://github.com/clarkbarz) ### Future diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 9ffee74..f93c61e 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 7, 1) # following PEP 386 +VERSION = (1, 7, 2) # following PEP 386 DEV_N = None diff --git a/sample_project/requirements.txt b/sample_project/requirements.txt index 61f1db1..057742f 100644 --- a/sample_project/requirements.txt +++ b/sample_project/requirements.txt @@ -1,2 +1,2 @@ -django==1.6.1 -south==0.8.1 +django +south