diff --git a/AUTHORS.rst b/AUTHORS.rst index a2ab7b5..067fdfe 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -47,6 +47,7 @@ Developers * Andrea de Marco (@z4r) * Kenneth Love (@kennethlove / ) * Kevin Diale (@powersurge360 / ) +* James Rivett-Carnac (@yarbelk / james.rivettcarnac@gmail.com) Translators ----------- diff --git a/HISTORY.rst b/HISTORY.rst index d7b416b..e093b53 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,23 @@ History ========= -0.5.2 (2013-07-14) +0.6.0 (2013-09-12) + * Implemented LogHistory to track recent history + * New system for adding new views to ModelAdmin2 object + * Fixed missing enctype="multipart/form-data" functionality + * Implemented "app verbose name" + * Apps can have customized names + * List Actions can be set so they don't require selecting a model + * Implemented ModelAdmin2.ordering + * To maintain API consistency, renamed views.AdminView's "url" argument to "regex" + * Implemented ModelAdmin2.date_hierarchy + * Changed theming system to make default theme follow the same rules as third-party themes. + * Inlines now separated into stacked and tabular formats + * Code coverage now displaying in README + * User list page now showing all default columns and filters + * Vast documentation improvements + * Converted to ``django.utils.encoding.force_str`` instead ``unicode`` in order to type edge cases * setup.py fix 0.5.1 (2013-07-14) diff --git a/djadmin2/__init__.py b/djadmin2/__init__.py index 8dd754b..2906605 100644 --- a/djadmin2/__init__.py +++ b/djadmin2/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import division, absolute_import, unicode_literals -__version__ = '0.5.2' +__version__ = '0.6.0' __author__ = 'Daniel Greenfeld & Contributors'