From bc9707d618d733f209483f665320cc4484eb7d52 Mon Sep 17 00:00:00 2001 From: Camilo Nova Date: Mon, 21 Aug 2023 16:20:18 -0500 Subject: [PATCH] Bump version 3.1.0 --- constance/__init__.py | 2 +- docs/changes.rst | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/constance/__init__.py b/constance/__init__.py index 506d4b0..16bbb75 100644 --- a/constance/__init__.py +++ b/constance/__init__.py @@ -1,6 +1,6 @@ from django.utils.functional import LazyObject -__version__ = '3.0.0' +__version__ = '3.1.0' class LazyConfig(LazyObject): diff --git a/docs/changes.rst b/docs/changes.rst index 191c0cb..11e3a00 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,13 @@ Changelog --------- +v3.1.0 (2023/08/21) +~~~~~~~~~~~~~~~~~~~ + +* Add support for using a subdirectory of `MEDIA_ROOT` for file fields + +* Remove pypy from tox tests + v3.0.0 (2023/07/27) ~~~~~~~~~~~~~~~~~~~