diff --git a/CHANGELOG b/CHANGELOG index 3d78d96..08bed94 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +0.21.1 - 2021/02/25 +------------------- + +New release to fix package publishing on Pypi, no other changes. + 0.21.0 - 2021/02/25 ------------------- diff --git a/setup.py b/setup.py index 2e5da94..bb097cf 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,7 @@ description='A clear and powerful weblog application powered with Django', long_description='\n'.join([open('README.rst').read(), open('CHANGELOG').read()]), + long_description_content_type='text/x-rst', keywords='django, blog, weblog, zinnia, post, news', author=zinnia.__author__, diff --git a/zinnia/__init__.py b/zinnia/__init__.py index 8e53436..8109eb7 100644 --- a/zinnia/__init__.py +++ b/zinnia/__init__.py @@ -1,9 +1,9 @@ """Zinnia""" -__version__ = '0.21.0' +__version__ = '0.21.1' __license__ = 'BSD License' -__author__ = 'Emencia', -__email__ = 'support@emencia.com', +__author__ = 'Emencia' +__email__ = 'support@emencia.com' __url__ = 'https://github.com/emencia/django-blog-xinnia'