Skip to content

Commit

Permalink
chore: Release 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Aug 31, 2023
1 parent 63423b2 commit 7a740a6
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 19 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
Release v2.9.0 (2023-08-31)
---------------------------

### Features & Improvements

- Add an `--overwrite` option to `pdm init` to overwrite existing files(default False). [#2163](https://github.com/pdm-project/pdm/issues/2163)
- Support passing filter patterns as positional arguments to `pdm list` command.
Add `--tree` as an alias and preferred name of `--graph` option. [#2165](https://github.com/pdm-project/pdm/issues/2165)
- Switch to truststore by default. [#2195](https://github.com/pdm-project/pdm/issues/2195)
- Consider packages as installed if the venv includes them from the system-site-packages. [#2216](https://github.com/pdm-project/pdm/issues/2216)
- Allow `pdm run` to run a script with the relative or absolute path. [#2217](https://github.com/pdm-project/pdm/issues/2217)

### Bug Fixes

- Fix a bug that removing dev dependency uninstalls the project as well. [#2150](https://github.com/pdm-project/pdm/issues/2150)
- Fix a bug that `@ file://` dependencies can not be updated. [#2169](https://github.com/pdm-project/pdm/issues/2169)
- Fix a bug that dependencies requested out of the range of `requires-python` cause PDM to crash. [#2175](https://github.com/pdm-project/pdm/issues/2175)
- Fix the compatibility issue with copier 8.0+. [#2177](https://github.com/pdm-project/pdm/issues/2177)
- Makes `comarable_version("1.2.3+local1") == Version("1.2.3")`. [#2182](https://github.com/pdm-project/pdm/issues/2182)
- Default behavior for pdm venv activate when shell detection fails. [#2187](https://github.com/pdm-project/pdm/issues/2187)
- Handle parsing errors when converting from poetry-style metadata. [#2203](https://github.com/pdm-project/pdm/issues/2203)
- Don't copy .pyc files from the template directory. [#2213](https://github.com/pdm-project/pdm/issues/2213)

### Removals and Deprecations

- Remove the legacy build backend `pdm-pep517`. [#2167](https://github.com/pdm-project/pdm/issues/2167)


Release v2.8.2 (2023-07-31)
---------------------------

Expand Down
1 change: 0 additions & 1 deletion news/2150.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2163.feature.md

This file was deleted.

2 changes: 0 additions & 2 deletions news/2165.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2167.removal.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2169.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2175.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2177.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2182.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2187.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2195.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2203.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2213.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2216.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2217.feature.md

This file was deleted.

8 changes: 4 additions & 4 deletions src/pdm/models/python_max_versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
"3": 11,
"3.0": 1,
"3.1": 5,
"3.10": 12,
"3.11": 4,
"3.10": 13,
"3.11": 5,
"3.2": 6,
"3.3": 7,
"3.4": 10,
"3.5": 10,
"3.6": 15,
"3.7": 17,
"3.8": 17,
"3.9": 17
"3.8": 18,
"3.9": 18
}

0 comments on commit 7a740a6

Please sign in to comment.