From bd4c2363d2f9c5b58eee1739eaee1e02987860fa Mon Sep 17 00:00:00 2001 From: Martin Mahner Date: Thu, 5 Dec 2019 09:41:34 +0100 Subject: [PATCH] Bump version and update Changelog. --- CHANGELOG.rst | 8 ++++++++ docs/standalone_installation.rst | 2 +- dpaste/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 94fab18..f3393e8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ 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): ------------------- diff --git a/docs/standalone_installation.rst b/docs/standalone_installation.rst index 7e9d820..5bffc6f 100644 --- a/docs/standalone_installation.rst +++ b/docs/standalone_installation.rst @@ -44,7 +44,7 @@ Run the testsuite to make sure everything was built correctly: .. code-block:: bash - $ pipenv run ./runtests.py + $ pipenv run test Finally, to run the project on your local machine: diff --git a/dpaste/__init__.py b/dpaste/__init__.py index ae58c3d..dc58823 100644 --- a/dpaste/__init__.py +++ b/dpaste/__init__.py @@ -1,4 +1,4 @@ -VERSION = (3, 3, '.1') +VERSION = (3, 4, 'a0') __version__ = '{major}.{minor}{rest}'.format( major=VERSION[0],