diff --git a/CHANGES.rst b/CHANGES.rst index 09e39461..56752273 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changes ======= +0.9.1 (18-05-2020) +------------------ + +- Drop support for Django 1.11 LTS and Python 3.4 and 2.7. +- Updated translations. + 0.9 (19-02-2019) ---------------- diff --git a/RELENG.rst b/RELENG.rst index df1f4d7c..d33b776b 100644 --- a/RELENG.rst +++ b/RELENG.rst @@ -10,8 +10,7 @@ Steps #. Pick release date. #. Create milestone on GitHub, organise open tickets. #. Push source translations to Transifex:: - $ django-admin makemessages -l en - $ tx push -s + $ pipenv run django-admin makemessages -l en && tx push -s #. Send out announcement to translators on Transifex. #. Bump version in :code:`setup.py`. #. Update supported Django/Python releases to match Django's. diff --git a/setup.py b/setup.py index 1f06372a..347d8ad9 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ setup( name='django-newsletter', - version="0.9", + version="0.9.1", description=( 'Django app for managing multiple mass-mailing lists with both ' 'plaintext as well as HTML templates (and pluggable WYSIWYG editors ' @@ -66,7 +66,6 @@ 'License :: OSI Approved :: GNU Affero General Public License v3', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',