diff --git a/docs/changelog.rst b/docs/changelog.rst index a3676d6d7..30b30e774 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -11,6 +11,28 @@ with advance notice in the **Deprecations** section of releases. .. towncrier release notes start + +v3.25.1 (2022-06-29) +-------------------- + +Bugfixes +^^^^^^^^ + +- ``sitepackages = true`` will add user's site-package to the python path on Windows as expected -- by :user:`niander` + `#2402 `_ +- Avoid importing ``pipes`` on Python 3.3+ to avoid ``DeprecationWarning`` on Python 3.11 -- by :user:`adamchainz` + `#2417 `_ +- Fix ``isolated_build`` when the build process produces stderr at exit. + `#2449 `_ + + +Documentation +^^^^^^^^^^^^^ + +- Explain advantages of ``PIP_CONSTRAINT`` environment variable over ``--constraint`` argument. + `#2423 `_ + + v3.25.0 (2022-04-11) -------------------- diff --git a/docs/changelog/2402.bugfix.rst b/docs/changelog/2402.bugfix.rst deleted file mode 100644 index 25f5d724e..000000000 --- a/docs/changelog/2402.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -``sitepackages = true`` will add user's site-package to the python path on Windows as expected -- by :user:`niander` diff --git a/docs/changelog/2417.bugfix.rst b/docs/changelog/2417.bugfix.rst deleted file mode 100644 index cf0dfe8fa..000000000 --- a/docs/changelog/2417.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Avoid importing ``pipes`` on Python 3.3+ to avoid ``DeprecationWarning`` on Python 3.11 -- by :user:`adamchainz` diff --git a/docs/changelog/2423.doc.rst b/docs/changelog/2423.doc.rst deleted file mode 100644 index 94c90bdc5..000000000 --- a/docs/changelog/2423.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Explain advantages of ``PIP_CONSTRAINT`` environment variable over ``--constraint`` argument. diff --git a/docs/changelog/2449.bugfix.rst b/docs/changelog/2449.bugfix.rst deleted file mode 100644 index 8fbf6790d..000000000 --- a/docs/changelog/2449.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix ``isolated_build`` when the build process produces stderr at exit.