Version 3.4

This commit is contained in:
Martin Mahner 2019-12-08 19:44:19 +01:00
parent 9449d5d976
commit 09ed6aa845
2 changed files with 5 additions and 5 deletions

View file

@ -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):
-------------------

View file

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