diff --git a/CHANGELOG.md b/CHANGELOG.md index b0b2100abf..43329eef0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +Release v2.13.3 (2024-04-08) +---------------------------- + +### Bug Fixes + +- Per-source configuration for ca-certs and client-cert. [#2754](https://github.com/pdm-project/pdm/issues/2754) +- Remove all caches by removing individual cache types one by one. [#2757](https://github.com/pdm-project/pdm/issues/2757) +- Use the default HTTP client when downloading the pythons, to use the certificates settings. [#2759](https://github.com/pdm-project/pdm/issues/2759) +- Fix a race condition where pth files take effect when multiple packages are installed in parallel. [#2762](https://github.com/pdm-project/pdm/issues/2762) +- Refuse to run recursive composite scripts. [#2766](https://github.com/pdm-project/pdm/issues/2766) Release v2.13.2 (2024-03-30) ---------------------------- diff --git a/news/2754.bugfix.md b/news/2754.bugfix.md deleted file mode 100644 index 552c64bc10..0000000000 --- a/news/2754.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Per-source configuration for ca-certs and client-cert. diff --git a/news/2757.bugfix.md b/news/2757.bugfix.md deleted file mode 100644 index 81ab6715ea..0000000000 --- a/news/2757.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Remove all caches by removing individual cache types one by one. diff --git a/news/2759.bugfix.md b/news/2759.bugfix.md deleted file mode 100644 index 181737eac6..0000000000 --- a/news/2759.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Use the default HTTP client when downloading the pythons, to use the certificates settings. diff --git a/news/2762.bugfix.md b/news/2762.bugfix.md deleted file mode 100644 index 659c0fb8a0..0000000000 --- a/news/2762.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a race condition where pth files take effect when multiple packages are installed in parallel. diff --git a/news/2766.bugfix.md b/news/2766.bugfix.md deleted file mode 100644 index 449dd04812..0000000000 --- a/news/2766.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Refuse to run recursive composite scripts. diff --git a/src/pdm/models/python_max_versions.json b/src/pdm/models/python_max_versions.json index 3ff67572b1..10580a896c 100644 --- a/src/pdm/models/python_max_versions.json +++ b/src/pdm/models/python_max_versions.json @@ -12,7 +12,7 @@ "3.0": 1, "3.1": 5, "3.10": 14, - "3.11": 8, + "3.11": 9, "3.12": 2, "3.2": 6, "3.3": 7,