From 44fddc2082db16e96e77d388db0ef94812f06226 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sat, 15 May 2021 20:51:46 +0300 Subject: [PATCH] Release 4.3.0 --- docs/changelog.rst | 14 ++++++++++++++ docs/database.rst | 3 +++ 2 files changed, 17 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9d59a7e9..9f3e438c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,20 @@ Changelog ========= +v4.3.0 (2021-05-15) +------------------- + +Improvements +^^^^^^^^^^^^ + +* Add experimental :ref:`multiple databases ` (multi db) support. + +* Add type annotations. If you previously excluded ``pytest_django`` from + your type-checker, you can remove the exclusion. + +* Documentation improvements. + + v4.2.0 (2021-04-10) ------------------- diff --git a/docs/database.rst b/docs/database.rst index 004342b4..2f311599 100644 --- a/docs/database.rst +++ b/docs/database.rst @@ -60,10 +60,13 @@ select using an argument to the ``django_db`` mark:: def test_spam(): pass # test relying on transactions +.. _`multi-db`: Tests requiring multiple databases ---------------------------------- +.. versionadded:: 4.3 + .. caution:: This support is **experimental** and is subject to change without