From 4cf70c7178941b69fe18e086134d1c8ab82a25f8 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Fri, 5 Aug 2022 20:27:08 +0800 Subject: [PATCH] chore: Release 2.1.1 --- CHANGELOG.md | 19 +++++++++++++++++++ news/1287.bugfix.md | 1 - news/1290.bugfix.md | 1 - news/1293.bugfix.md | 1 - news/1299.feature | 4 ---- news/1301.bugfix.md | 1 - news/1302.bugfix.md | 1 - pdm/models/python_max_versions.json | 2 +- 8 files changed, 20 insertions(+), 10 deletions(-) delete mode 100644 news/1287.bugfix.md delete mode 100644 news/1290.bugfix.md delete mode 100644 news/1293.bugfix.md delete mode 100644 news/1299.feature delete mode 100644 news/1301.bugfix.md delete mode 100644 news/1302.bugfix.md diff --git a/CHANGELOG.md b/CHANGELOG.md index b3a3bffb..70e3d6d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +Release v2.1.1 (2022-08-05) +--------------------------- + +### Features & Improvements + +- Add a env_file.override option that allows the user to specify that + the env_file should override any existing environment variables. This + is not the default as the environment the code runs it should take + precedence. [#1299](https://github.com/pdm-project/pdm/issues/1299) + +### Bug Fixes + +- Fix a bug that unnamed requirements can't override the old ones in either `add` or `update` command. [#1287](https://github.com/pdm-project/pdm/issues/1287) +- Support mutual TLS to private repositories via pypi.client_cert and pypi.client_key config options. [#1290](https://github.com/pdm-project/pdm/issues/1290) +- Set a minimum version for the `packaging` dependency to ensure that `packaging.utils.parse_wheel_filename` is available. [#1293](https://github.com/pdm-project/pdm/issues/1293) +- Fix a bug that checking for PDM update creates a venv. [#1301](https://github.com/pdm-project/pdm/issues/1301) +- Prefer compatible packages when fetching metadata. [#1302](https://github.com/pdm-project/pdm/issues/1302) + + Release v2.1.0 (2022-07-29) --------------------------- diff --git a/news/1287.bugfix.md b/news/1287.bugfix.md deleted file mode 100644 index d5eac93f..00000000 --- a/news/1287.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that unnamed requirements can't override the old ones in either `add` or `update` command. diff --git a/news/1290.bugfix.md b/news/1290.bugfix.md deleted file mode 100644 index 83892ff5..00000000 --- a/news/1290.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Support mutual TLS to private repositories via pypi.client_cert and pypi.client_key config options. diff --git a/news/1293.bugfix.md b/news/1293.bugfix.md deleted file mode 100644 index d37a236d..00000000 --- a/news/1293.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Set a minimum version for the `packaging` dependency to ensure that `packaging.utils.parse_wheel_filename` is available. diff --git a/news/1299.feature b/news/1299.feature deleted file mode 100644 index ce9bd611..00000000 --- a/news/1299.feature +++ /dev/null @@ -1,4 +0,0 @@ -Add a env_file.override option that allows the user to specify that -the env_file should override any existing environment variables. This -is not the default as the environment the code runs it should take -precedence. diff --git a/news/1301.bugfix.md b/news/1301.bugfix.md deleted file mode 100644 index e4a3acd3..00000000 --- a/news/1301.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that checking for PDM update creates a venv. diff --git a/news/1302.bugfix.md b/news/1302.bugfix.md deleted file mode 100644 index 090093f2..00000000 --- a/news/1302.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Prefer compatible packages when fetching metadata. diff --git a/pdm/models/python_max_versions.json b/pdm/models/python_max_versions.json index 025baa18..117d75d6 100644 --- a/pdm/models/python_max_versions.json +++ b/pdm/models/python_max_versions.json @@ -11,7 +11,7 @@ "3": 10, "3.0": 1, "3.1": 5, - "3.10": 5, + "3.10": 6, "3.2": 6, "3.3": 7, "3.4": 10, -- GitLab