diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b6b3f08..7b11d60 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -3.4 (master) ------------- +3.4 (2019-12-08) +---------------- - Dropped support for Python 3.4. - Dropped support for Python 3.5. @@ -26,10 +26,10 @@ Changelog - New "Slim" view that displays the highlighted snippet without header, options etc, and can be iframed. - Forced line-break for superlongwordsthatwouldexceedthecanvas. -- Local development is no longer centered around ``pipenv`` and is rather using +- Local development is no longer centered around ``pipenv``, instead it's using docker-compose or the classic virtualenv based setups. - Error pages are now correctly translated. -- Testsuite now uses pytest. +- Testsuite and Tox uses pytest instead of a homebrewed testrunner. 3.3.1 (2019-08-04): ------------------- diff --git a/dpaste/__init__.py b/dpaste/__init__.py index 96eba67..f8cbed4 100644 --- a/dpaste/__init__.py +++ b/dpaste/__init__.py @@ -1,4 +1,4 @@ -VERSION = (3, 4, "a0") +VERSION = (3, 4) __version__ = "{major}.{minor}{rest}".format( major=VERSION[0],