未验证 提交 6a3953d6 编写于 作者: F Frost Ming

chore: Release v2.0.0b2

上级 9a925f7a
Release v2.0.0b2 (2022-07-08)
-----------------------------
### Breaking Changes
- Store file URLs instead of filenames in the lock file, bump lock version to `4.0`. [#1203](https://github.com/pdm-project/pdm/issues/1203)
### Features & Improvements
- Read site-wide configuration, which serves as the lowest-priority layer.
This layer will be read-only in the CLI. [#1200](https://github.com/pdm-project/pdm/issues/1200)
- Get package links from the urls stored in the lock file. [#1204](https://github.com/pdm-project/pdm/issues/1204)
### Bug Fixes
- Fix a bug that the host pip(installed with pdm) may not be compatible with the project python. [#1196](https://github.com/pdm-project/pdm/issues/1196)
- Update `unearth` to fix a bug that install links with weak hashes are skipped. This often happens on self-hosted PyPI servers. [#1202](https://github.com/pdm-project/pdm/issues/1202)
Release v2.0.0b1 (2022-07-02)
-----------------------------
......
Fix a bug that the host pip(installed with pdm) may not be compatible with the project python.
Read site-wide configuration, which serves as the lowest-priority layer.
This layer will be read-only in the CLI.
Update `unearth` to fix a bug that install links with weak hashes are skipped. This often happens on self-hosted PyPI servers.
Store file URLs instead of filenames in the lock file, bump lock version to `4.0`.
\ No newline at end of file
Get package links from the urls stored in the lock file.
......@@ -63,7 +63,9 @@ def release(dry_run=False, commit=True, pre=None, major=False, minor=False, patc
subprocess.check_call(["towncrier", "build", "--yes", "--version", new_version])
subprocess.check_call(["git", "add", "."])
if commit:
subprocess.check_call(["git", "commit", "-m", f"Release {new_version}"])
subprocess.check_call(
["git", "commit", "-m", f"chore: Release {new_version}"]
)
subprocess.check_call(
["git", "tag", "-a", new_version, "-m", f"v{new_version}"]
)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册