Bump version

This commit is contained in:
Iacopo Spalletti 2015-10-29 21:40:45 +01:00
parent 6ca35e329c
commit b697460c94
3 changed files with 8 additions and 9 deletions

View file

@ -3,9 +3,14 @@
History
-------
0.6.0 (unreleased)
0.6.0 (2015-10-30)
++++++++++++++++++
* Add support for django CMS 3.2 Wizard
* Add support for Apphook Config
* Add Haystack support
* Improved support for meta tags
* Improved admin
* LatestPostsPlugin tags field has been changed to a plain TaggableManager field.
A migration is in place to move the data, but backup your data first.

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
__author__ = 'Iacopo Spalletti'
__email__ = 'i.spalletti@nephila.it'
__version__ = '0.6.0.a3'
__version__ = '0.6.0'
default_app_config = 'djangocms_blog.apps.BlogAppConfig'

View file

@ -13,12 +13,6 @@ except ImportError:
version = djangocms_blog.__version__
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
print('You probably want to also tag the version now:')
print(' git tag -a %s -m "version %s"' % (version, version))
print(' git push --tags')
sys.exit()
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
@ -38,7 +32,7 @@ setup(
include_package_data=True,
install_requires=[
'django-parler>=1.2',
'django-cms',
'django-cms>3.0.11',
'django-taggit>=0.12.2',
'django-filer',
'pytz',