Bump version and update Changelog.

This commit is contained in:
Martin Mahner 2019-12-05 09:41:34 +01:00
parent 63a8500cc8
commit bd4c2363d2
3 changed files with 10 additions and 2 deletions

View file

@ -1,6 +1,14 @@
Changelog Changelog
========= =========
3.4 (master)
------------
- Dropped support for Python 3.4.
- Django 3.0 support and tests.
- Python 3.8 support and tests.
- Testsuite now uses pytest.
3.3.1 (2019-08-04): 3.3.1 (2019-08-04):
------------------- -------------------

View file

@ -44,7 +44,7 @@ Run the testsuite to make sure everything was built correctly:
.. code-block:: bash .. code-block:: bash
$ pipenv run ./runtests.py $ pipenv run test
Finally, to run the project on your local machine: Finally, to run the project on your local machine:

View file

@ -1,4 +1,4 @@
VERSION = (3, 3, '.1') VERSION = (3, 4, 'a0')
__version__ = '{major}.{minor}{rest}'.format( __version__ = '{major}.{minor}{rest}'.format(
major=VERSION[0], major=VERSION[0],