From 0d69412e5870365fb52b674acabda3a143e8a95f Mon Sep 17 00:00:00 2001 From: Vytautas Liuolia Date: Tue, 5 Nov 2024 21:41:18 +0100 Subject: [PATCH] chore: render out newsfragments --- docs/_newsfragments/2365.misc.rst | 1 - docs/_newsfragments/2387.bugfix.rst | 7 ------- docs/changes/4.0.2.rst | 17 ++++++++++++++++- 3 files changed, 16 insertions(+), 9 deletions(-) delete mode 100644 docs/_newsfragments/2365.misc.rst delete mode 100644 docs/_newsfragments/2387.bugfix.rst diff --git a/docs/_newsfragments/2365.misc.rst b/docs/_newsfragments/2365.misc.rst deleted file mode 100644 index e379cb63a..000000000 --- a/docs/_newsfragments/2365.misc.rst +++ /dev/null @@ -1 +0,0 @@ -The printable PDF version of our documentation was enabled on Read the Docs. diff --git a/docs/_newsfragments/2387.bugfix.rst b/docs/_newsfragments/2387.bugfix.rst deleted file mode 100644 index eccf22a8d..000000000 --- a/docs/_newsfragments/2387.bugfix.rst +++ /dev/null @@ -1,7 +0,0 @@ -Running Mypy on code that uses parts of ``falcon.testing`` -would previously lead to errors like:: - - Name "falcon.testing.TestClient" is not defined - -This has been fixed by explicitly exporting the names that are -imported into the ``falcon.testing`` namespace. diff --git a/docs/changes/4.0.2.rst b/docs/changes/4.0.2.rst index 6c7a29209..521c3d591 100644 --- a/docs/changes/4.0.2.rst +++ b/docs/changes/4.0.2.rst @@ -8,7 +8,22 @@ This is a minor point release to fix some missed re-exports for type checkers. In addition, we have also included a couple of documentation improvements. -.. towncrier release notes start +Fixed +----- + +- Running Mypy on code that uses parts of ``falcon.testing`` + would previously lead to errors like:: + + Name "falcon.testing.TestClient" is not defined + + This has been fixed by explicitly exporting the names that are + imported into the ``falcon.testing`` namespace. (`#2387 `__) + + +Misc +---- + +- The printable PDF version of our documentation was enabled on Read the Docs. (`#2365 `__) Contributors to this Release