From 896482445c9069d59e1e7ae348836aecc3ab9e57 Mon Sep 17 00:00:00 2001 From: David Jean Louis Date: Tue, 7 Jul 2015 12:30:42 +0200 Subject: [PATCH] Bumped version and added CHANGELOG for 0.6.0 --- CHANGELOG | 23 +++++++++++++++++++++++ admin_tools/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ed70742..5dbbb81 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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: ------------------------------ diff --git a/admin_tools/__init__.py b/admin_tools/__init__.py index 0b8ee3b..42d15a6 100644 --- a/admin_tools/__init__.py +++ b/admin_tools/__init__.py @@ -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' diff --git a/setup.py b/setup.py index fdaeb35..e25da10 100755 --- a/setup.py +++ b/setup.py @@ -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,