From 2c827124cddf16fe01f756d232fdc3fed1b8d369 Mon Sep 17 00:00:00 2001 From: Alexandr Artemyev Date: Wed, 21 Aug 2024 02:46:25 +0500 Subject: [PATCH] bump version (#565) --- docs/changes.rst | 17 +++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/docs/changes.rst b/docs/changes.rst index f2258ad..574e11e 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,23 @@ Changelog --------- +v4.0.0 (2024/08/21) +~~~~~~~~~~~~~~~~~~~ + +* Replace `pickle` with JSON for the database backend +* Fix migration on MySQL +* Fix data loss using `DatabaseBackend` when the DB connection is unstable +* Fix typos in the documentation +* Fix small HTML errors +* Drop support for legacy Django versions +* Migrate JavaScript to ES2015 +* Fix documentation build +* Add linters and formatters (using `ruff`) +* Prepare for Django 5.1 support +* Migrate from `setup.py` to `pyproject.toml` +* Bump `tox` +* Declare support for Python 3.12 + v3.1.0 (2023/08/21) ~~~~~~~~~~~~~~~~~~~ diff --git a/pyproject.toml b/pyproject.toml index cb9f625..1b53fc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-constance" -version = "3.1.0" +version = "4.0.0" description = "Django live settings with pluggable backends, including Redis." readme = "README.rst" license = { text = "BSD" }