Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
abidibo committed Dec 14, 2020
2 parents c1b6769 + 756660f commit bb03582
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
History
-------

0.2.1 (2020-12-14)
++++++++++++++++++

* Adds order field as editable in change list page

* First stable release

0.2.0 (2020-12-14)
++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.2.0'
version = u'0.2.1'
# The full version, including alpha/beta/rc tags.
release = u'0.2.0'
release = u'0.2.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion lineup/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.2.1'
1 change: 1 addition & 0 deletions lineup/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class MenuItemInline(admin.StackedInline):
class MenuItemAdmin(MPTTModelAdmin):
list_display = ('slug', 'label', 'parent', 'link', 'order', 'login_required', 'enabled', )
list_filter = (('parent', RelatedDropdownFilter, ) if baton else 'parent', 'enabled', 'login_required', )
list_editable = ('order', )
search_fields = ('label', )
filter_horizontal = ('permissions', )
inlines = [MenuItemInline, ]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.2.1

[wheel]
universal = 1
Expand Down

0 comments on commit bb03582

Please sign in to comment.