Skip to content

Commit

Permalink
Release 1.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Jun 1, 2022
1 parent 8af4e0a commit 23ab30b
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Release v1.15.1 (2022-06-02)
----------------------------

### Bug Fixes

- Fix a bug that dependencies are missing from the dep graph when they are depended by a requirement with extras. [#1097](https://github.com/pdm-project/pdm/issues/1097)
- Give a default version if the version is dynamic in `setup.cfg` or `setup.py`. [#1101](https://github.com/pdm-project/pdm/issues/1101)
- Fix a bug that the hashes for file URLs are not included in the lock file. [#1103](https://github.com/pdm-project/pdm/issues/1103)
- Fix a bug that package versions are updated even when they are excluded by `pdm update` command. [#1104](https://github.com/pdm-project/pdm/issues/1104)
- Prefer `venv` install scheme when available. This scheme is more stable than `posix_prefix` scheme since the latter is often patched by distributions. [#1106](https://github.com/pdm-project/pdm/issues/1106)

### Miscellany

- Move the test artifacts to a submodule. It will make it easier to package this project. [#1084](https://github.com/pdm-project/pdm/issues/1084)


Release v1.15.0 (2022-05-16)
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion news/1097.bugfix.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Fix a bug that dependencies missing from the dep graph when they are depended by a requirement with extras.
Fix a bug that dependencies are missing from the dep graph when they are depended by a requirement with extras.
2 changes: 1 addition & 1 deletion news/1101.bugfix.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Give a default version if the version is dynamic in `setup.cfg`.
Give a default version if the version is dynamic in `setup.cfg` or `setup.py`.
2 changes: 1 addition & 1 deletion news/1104.bugfix.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Fix a bug that package versions are updated even when they excluded in `pdm update` command.
Fix a bug that package versions are updated even when they are excluded by `pdm update` command.
2 changes: 1 addition & 1 deletion news/1106.bugfix.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Prefer `venv` install scheme when available. This scheme is more stable as `posix_prefix` scheme are often patched by distributions.
Prefer `venv` install scheme when available. This scheme is more stable than `posix_prefix` scheme since the latter is often patched by distributions.
2 changes: 1 addition & 1 deletion pdm/models/python_max_versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"3.6": 15,
"3.7": 13,
"3.8": 13,
"3.9": 12
"3.9": 13
}

0 comments on commit 23ab30b

Please sign in to comment.