Bump version
This commit is contained in:
parent
6ca35e329c
commit
b697460c94
3 changed files with 8 additions and 9 deletions
|
@ -3,9 +3,14 @@
|
||||||
History
|
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.
|
* 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.
|
A migration is in place to move the data, but backup your data first.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
__author__ = 'Iacopo Spalletti'
|
__author__ = 'Iacopo Spalletti'
|
||||||
__email__ = 'i.spalletti@nephila.it'
|
__email__ = 'i.spalletti@nephila.it'
|
||||||
__version__ = '0.6.0.a3'
|
__version__ = '0.6.0'
|
||||||
|
|
||||||
default_app_config = 'djangocms_blog.apps.BlogAppConfig'
|
default_app_config = 'djangocms_blog.apps.BlogAppConfig'
|
||||||
|
|
8
setup.py
8
setup.py
|
@ -13,12 +13,6 @@ except ImportError:
|
||||||
|
|
||||||
version = djangocms_blog.__version__
|
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()
|
readme = open('README.rst').read()
|
||||||
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
|
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
|
||||||
|
@ -38,7 +32,7 @@ setup(
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'django-parler>=1.2',
|
'django-parler>=1.2',
|
||||||
'django-cms',
|
'django-cms>3.0.11',
|
||||||
'django-taggit>=0.12.2',
|
'django-taggit>=0.12.2',
|
||||||
'django-filer',
|
'django-filer',
|
||||||
'pytz',
|
'pytz',
|
||||||
|
|
Loading…
Add table
Reference in a new issue