Skip to content

Commit

Permalink
Merge branch 'release/0.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
benzkji committed Jun 15, 2017
2 parents 3b48ca2 + f9aa582 commit eeb817d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
=== (ongoing) ===
- whatever

=== 0.2.2 ===
- fixing regression for django 1.8

=== 0.2.1 ===
- first release on pypi
- django 1.10 and 1.11 compatibility not yet
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
include README.md
include CHANGELOG.txt
recursive-include admin_sort *.py
recursive-include admin_sort/locale *
recursive-include admin_sort/static *
recursive-include admin_sort/templates *
recursive-include admin_sort/management *
recursive-exclude * *.pyc
2 changes: 1 addition & 1 deletion admin_sort/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.1'
__version__ = '0.2.2'
4 changes: 2 additions & 2 deletions admin_sort/static/admin_sort/js/sortable.inline.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ var SortableInline = (function ( $ ) {

function init_stacked( $group ) {
var $wrap = $('.inline-group', $group);
if ($wrap.find('fieldset.module').size()) {
if ($wrap.find('fieldset.module:not(.aligned)').size()) {
// django > 1.9
$wrap = $wrap.find('fieldset.module')
$wrap = $wrap.find('fieldset.module:not(.aligned)')
}
var $inlines = $('.inline-related', $wrap);
var $sortable_inlines = $inlines;
Expand Down
2 changes: 1 addition & 1 deletion release.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

# dont change any files during procedure.

git flow release start xxxx
version bump in admin_sort/__init__.py
Expand All @@ -14,4 +15,3 @@ python setup.py register -r pypitest
twine upload dist/* -r pypitest
python setup.py register -r pypi
twine upload dist/* -r pypi

0 comments on commit eeb817d

Please sign in to comment.