From 2412be25205ccbc8eb4c68536f2008b137e277c1 Mon Sep 17 00:00:00 2001 From: David Evans Date: Tue, 10 Dec 2019 21:16:37 +0000 Subject: [PATCH] Release version 5.0 --- docs/changelog.rst | 21 +++++++++++++++++++++ whitenoise/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index f0cad90f..f1869df3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,27 @@ Change Log
+ +v5.0 +---- + +.. note:: This is a major version bump, but only because it removes Python 2 + compatibility. If you were already running under Python 3 then there should + be no breaking changes. + + WhiteNoise is now tested on Python 3.5--3.8 and Django 2.0--3.0. + +Other changes include: + + * Fix incompatibility with Django 3.0 which caused problems with Safari + (details `here `_). Thanks + `@paltman `_ and `@giilby + `_ for diagnosing. + * Lots of improvements to the test suite (including switching to py.test). + Thanks `@NDevox `_ and `@Djailla + `_. + + v4.1.4 ------ diff --git a/whitenoise/__init__.py b/whitenoise/__init__.py index 3ddb380f..034cc12e 100644 --- a/whitenoise/__init__.py +++ b/whitenoise/__init__.py @@ -1,5 +1,5 @@ from .base import WhiteNoise -__version__ = "4.1.4" +__version__ = "5.0" __all__ = ["WhiteNoise"]