Merged pull request 44.

Updated README to include information about backward-incompatible changes in 1.5.2
master
Brandon Taylor 2013-06-26 10:05:32 -04:00
parent 37ebbf0dde
commit 83e275bd20
3 changed files with 11 additions and 8 deletions

7
.gitignore vendored
View File

@ -6,9 +6,6 @@ django_admin_sortable.egg-info
*.pyo
.idea
atlassian-ide-plugin.xml
django-admin-sortable.sublime-project
django-admin-sortable.sublime-workspace
adminsortable.sublime-project
adminsortable.sublime-workspace
*.sublime-*
.ropeproject
.codeintel
.codeintel

View File

@ -7,6 +7,12 @@ enabling individual items or groups of items to be sortable.
## Requirements
jQuery
## Supported Django Versions
If you're using Django 1.4.x, use django-admin-sortable 1.4.9 or below.
For Django 1.5.x, use the latest version of django-admin-sortable.
django-admin-sortable 1.5.2 introduces backward-incompatible changes for Django 1.4.x
## Installation
1. pip install django-admin-sortable
@ -218,8 +224,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.5.1?
- Fixed a bug that could cause the change_form template to not be populated correctly when adding a new record.
### What's new in 1.5.2?
- Added support for {% static %} template tag for Django 1.5.x (thanks @acgray)
### Future

View File

@ -1,4 +1,4 @@
VERSION = (1, 5, 1) # following PEP 386
VERSION = (1, 5, 2) # following PEP 386
DEV_N = None