Merged pull request 44.
Updated README to include information about backward-incompatible changes in 1.5.2master
parent
37ebbf0dde
commit
83e275bd20
|
|
@ -6,9 +6,6 @@ django_admin_sortable.egg-info
|
||||||
*.pyo
|
*.pyo
|
||||||
.idea
|
.idea
|
||||||
atlassian-ide-plugin.xml
|
atlassian-ide-plugin.xml
|
||||||
django-admin-sortable.sublime-project
|
*.sublime-*
|
||||||
django-admin-sortable.sublime-workspace
|
|
||||||
adminsortable.sublime-project
|
|
||||||
adminsortable.sublime-workspace
|
|
||||||
.ropeproject
|
.ropeproject
|
||||||
.codeintel
|
.codeintel
|
||||||
|
|
|
||||||
10
README.md
10
README.md
|
|
@ -7,6 +7,12 @@ enabling individual items or groups of items to be sortable.
|
||||||
## Requirements
|
## Requirements
|
||||||
jQuery
|
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
|
## Installation
|
||||||
1. pip install django-admin-sortable
|
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.
|
django-admin-sortable is currently used in production.
|
||||||
|
|
||||||
|
|
||||||
### What's new in 1.5.1?
|
### What's new in 1.5.2?
|
||||||
- Fixed a bug that could cause the change_form template to not be populated correctly when adding a new record.
|
- Added support for {% static %} template tag for Django 1.5.x (thanks @acgray)
|
||||||
|
|
||||||
|
|
||||||
### Future
|
### Future
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION = (1, 5, 1) # following PEP 386
|
VERSION = (1, 5, 2) # following PEP 386
|
||||||
DEV_N = None
|
DEV_N = None
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue