Release 0.5.2

This commit is contained in:
David Jean Louis 2014-08-11 18:06:34 +02:00
parent 73f60c6e61
commit b5e348b4db
4 changed files with 20 additions and 13 deletions

View File

@ -2,6 +2,24 @@
django-admin-tools changelog
============================
Version 0.5.2, 11 August 2014:
------------------------------
* Added django 1.5 and 1.6 support
* Django 1.7 is supported but migrations still using south
* Added python 3 support
* Add some blocks to facilitate template inheritance
* Add management command to remove the dashboard preferences
* Fixed issue #126 (feedparser deprecation warning)
* Fixed issue #133 (recent Actions links have an unecessary /admin/ prefix)
* Use i18n app name in app_list, menu and breadcrumb of app_index
* Use user.get_short_name and user.get_username in admin header (fixes #121)
* Better docstring for AppList and ModelList modules
* Eliminated jumping to top of page when clicking collapse/add/remove buttons on dashboard modules
Thanks to all the folks who contributed to this release.
Version 0.5.1, 13 March 2013:
-----------------------------

View File

@ -6,4 +6,4 @@ administration interface, it includes:
* a customizable menu bar,
* tools to make admin theming easier.
"""
VERSION = '0.5.1'
VERSION = '0.5.2'

View File

@ -16,17 +16,6 @@ django-admin-tools includes:
* a customizable menu bar,
* tools to make admin theming easier.
.. note::
This documentation covers the latest version of django-admin-tools (tip).
For older versions please follow the links below:
* `Version 0.4.1 <http://readthedocs.org/docs/django-admin-tools/v0.4.1/>`_
* `Version 0.4.0 <http://readthedocs.org/docs/django-admin-tools/v0.4.0/>`_
* `Version 0.3.0 <http://readthedocs.org/docs/django-admin-tools/v0.3.0/>`_
* `Version 0.2.0 <http://readthedocs.org/docs/django-admin-tools/v0.2.0/>`_
* `Version 0.1.1 <http://readthedocs.org/docs/django-admin-tools/v0.1.1/>`_
* `Version 0.1.0 <http://readthedocs.org/docs/django-admin-tools/v0.1.0/>`_
To get up and running quickly, consult the :ref:`quick-start guide
<quickstart>`, which describes all the necessary steps to install
django-admin-tools and configure it for the default setup.

View File

@ -18,7 +18,7 @@ setup(
author='David Jean Louis',
author_email='izimobil@gmail.com',
url=bitbucket_url,
download_url='%sdownloads/django-admin-tools-%s.tar.gz' % (bitbucket_url, VERSION),
download_url='https://pypi.python.org/packages/source/d/django-admin-tools/django-admin-tools-%s.tar.gz' % VERSION,
packages=find_packages(),
include_package_data=True,
license='MIT License',