diff --git a/CHANGELOG.md b/CHANGELOG.md index 25aa7fb80c..5448e9a8cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## Release v2.19.0 (2024-09-23) + + +### Bug Fixes + +- Fallback version to 0.0.0 when the version is not specified or empty. This can avoid crash when building such project. ([#3163](https://github.com/pdm-project/pdm/issues/3163)) +- Ensures that `/` is URL encoded in sources URL environment variables. ([#3169](https://github.com/pdm-project/pdm/issues/3169)) +- Call functions from shared library in the in-process `env_spec.py` script. ([#3176](https://github.com/pdm-project/pdm/issues/3176)) + +### Removals and Deprecations + +- PDM no longer falls back to `setuptools-pep660` when the build backend doesn't support PEP 660. ([#3159](https://github.com/pdm-project/pdm/issues/3159)) + +### Miscellany + +- Change the project structure to a normal package from a namespace package. ([#3155](https://github.com/pdm-project/pdm/issues/3155)) + + ## Release v2.18.2 (2024-09-10) ### Bug Fixes diff --git a/news/3155.misc.md b/news/3155.misc.md deleted file mode 100644 index 37510e2f08..0000000000 --- a/news/3155.misc.md +++ /dev/null @@ -1 +0,0 @@ -Change the project structure to a normal package from a namespace package. diff --git a/news/3159.removal.md b/news/3159.removal.md deleted file mode 100644 index d71e7e6df3..0000000000 --- a/news/3159.removal.md +++ /dev/null @@ -1 +0,0 @@ -PDM no longer falls back to `setuptools-pep660` when the build backend doesn't support PEP 660. diff --git a/news/3163.bugfix.md b/news/3163.bugfix.md deleted file mode 100644 index 250403e587..0000000000 --- a/news/3163.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fallback version to 0.0.0 when the version is not specified or empty. This can avoid crash when building such project. diff --git a/news/3169.bugfix.md b/news/3169.bugfix.md deleted file mode 100644 index 1d0c0482d9..0000000000 --- a/news/3169.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Ensures that `/` is URL encoded in sources URL environment variables. diff --git a/news/3176.bugfix.md b/news/3176.bugfix.md deleted file mode 100644 index 40557f0bb3..0000000000 --- a/news/3176.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Call functions from shared library in the in-process `env_spec.py` script.