Skip to content

Commit

Permalink
chore: Release 2.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Jun 25, 2024
1 parent ee561be commit 7664d7b
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 14 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
## Release v2.16.0 (2024-06-25)


### Features & Improvements

- Add `--no-extras` to `pdm export` to strip extras from the requirements. Now the default behavior is to keep extras. ([#2519](https://github.com/pdm-project/pdm/issues/2519))
- Support PEP 723: running scripts with inline metadata in standalone environment with dependencies. ([#2924](https://github.com/pdm-project/pdm/issues/2924))
- `pdm use` and `pdm python install` now take `requires-python` into account (incl. from pyproject.toml) if python version
not specified and `pdm use` provides auto installation by that. ([#2943](https://github.com/pdm-project/pdm/issues/2943))
- `--no-isolation` no longer installs `build-requires` nor dynamic build dependencies, to be consistent with `pip`. ([#2944](https://github.com/pdm-project/pdm/issues/2944))
- Add notifiers in CLI output when global project is being used. ([#2952](https://github.com/pdm-project/pdm/issues/2952))
- Use `tool.pdm.resolution` table when calculating the content hash of project file, previously only `overrides` table was used.
This will change the hash already stored in the lockfile, so bump the lockfile version to `4.4.2`. ([#2956](https://github.com/pdm-project/pdm/issues/2956))

### Bug Fixes

- Add max retries on read timeout or bad connection. ([#2914](https://github.com/pdm-project/pdm/issues/2914))
- Don't update local files if they don't change. ([#2966](https://github.com/pdm-project/pdm/issues/2966))
- Don't list python versions that don't have any installation link for the current platform. ([#2970](https://github.com/pdm-project/pdm/issues/2970))

### Documentation

- Clarify the purposes of `pdm outdated` and `--unconstrained` option. ([#2965](https://github.com/pdm-project/pdm/issues/2965))
- Some clarifications on the interpreter selection and central package cache. ([#2967](https://github.com/pdm-project/pdm/issues/2967))


## Release v2.15.4 (2024-05-30)


Expand Down
1 change: 0 additions & 1 deletion news/2519.feature.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/2965.doc.md

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/2967.doc.md

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion src/pdm/models/python_max_versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"3.1": 5,
"3.10": 14,
"3.11": 9,
"3.12": 3,
"3.12": 4,
"3.2": 6,
"3.3": 7,
"3.4": 10,
Expand Down

0 comments on commit 7664d7b

Please sign in to comment.