Bumped version and added CHANGELOG for 0.6.0

This commit is contained in:
David Jean Louis 2015-07-07 12:30:42 +02:00
parent 2ecc133f03
commit 896482445c
3 changed files with 26 additions and 3 deletions

View File

@ -2,6 +2,29 @@
django-admin-tools changelog
============================
Version 0.6.0, 7 July 2015:
---------------------------
* VERY IMPORTANT INFORMATION, PLEASE READ: *
Starting from this version (0.6.0) django-admin-tools is no more compatible with Django 1.6 or lower.
Users of old django version should use the 0.5.2 version available on pypi.
If you are already using django-admin-tools on django <= 1.6, make sure to add the version on your requirement file, eg:
django-admin-tools==0.5.2
If you don't do this, a "pip install --upgrade" may break your admin site.
You have been warned !
Now for the actual change log:
* Dropped support for django 1.6 or lower
* Added support for django 1.8
* Cleaned up old compatibility code
* Use django builtin staticfiles
* Various improvements and bug fixes
Version 0.5.2, 11 August 2014:
------------------------------

View File

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

View File

@ -3,7 +3,7 @@
from setuptools import setup, find_packages
from admin_tools import VERSION
bitbucket_url = 'http://bitbucket.org/izi/django-admin-tools/'
repo_url = 'https://github.com/django-admin-tools/django-admin-tools'
long_desc = '''
%s
@ -17,7 +17,7 @@ setup(
long_description=long_desc,
author='David Jean Louis',
author_email='izimobil@gmail.com',
url=bitbucket_url,
url=repo_url,
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,