|
1 | 1 | # Change Log
|
2 | 2 |
|
| 3 | +## [2.0.1] - 2025-01-11 |
| 4 | + |
| 5 | +### Added |
| 6 | + |
| 7 | +- Add support for `poetry search` in legacy sources ([#9949](https://github.com/python-poetry/poetry/pull/9949)). |
| 8 | +- Add a message in the `poetry source show` output when PyPI is implicitly enabled ([#9974](https://github.com/python-poetry/poetry/pull/9974)). |
| 9 | + |
| 10 | +### Changed |
| 11 | + |
| 12 | +- Improve performance for merging markers from overrides at the end of dependency resolution ([#10018](https://github.com/python-poetry/poetry/pull/10018)). |
| 13 | + |
| 14 | +### Fixed |
| 15 | + |
| 16 | +- Fix an issue where `poetry sync` did not remove packages that were not requested ([#9946](https://github.com/python-poetry/poetry/pull/9946)). |
| 17 | +- Fix an issue where `poetry check` failed even though there were just warnings and add a `--strict` option to fail on warnings ([#9983](https://github.com/python-poetry/poetry/pull/9983)). |
| 18 | +- Fix an issue where `poetry update`, `poetry add` and `poetry remove` with `--only` uninstalled packages from other groups ([#10014](https://github.com/python-poetry/poetry/pull/10014)). |
| 19 | +- Fix an issue where `poetry update`, `poetry add` and `poetry remove` uninstalled all extra packages ([#10016](https://github.com/python-poetry/poetry/pull/10016)). |
| 20 | +- Fix an issue where `poetry self update` did not recognize Poetry's own environment ([#9995](https://github.com/python-poetry/poetry/pull/9995)). |
| 21 | +- Fix an issue where read-only system site-packages were not considered when loading an environment with system site-packages ([#9942](https://github.com/python-poetry/poetry/pull/9942)). |
| 22 | +- Fix an issue where an error message in `poetry install` started with `Warning:` instead of `Error:` ([#9945](https://github.com/python-poetry/poetry/pull/9945)). |
| 23 | +- Fix an issue where `Command.set_poetry`, which is used by plugins, was removed ([#9981](https://github.com/python-poetry/poetry/pull/9981)). |
| 24 | +- Fix an issue where the help text of `poetry build --clean` showed a malformed short option instead of the description ([#9994](https://github.com/python-poetry/poetry/pull/9994)). |
| 25 | + |
| 26 | +### Docs |
| 27 | + |
| 28 | +- Add a FAQ entry for the migration from Poetry-specific fields to the `project` section ([#9996](https://github.com/python-poetry/poetry/pull/9996)). |
| 29 | +- Fix examples for `project.readme` and `project.urls` ([#9948](https://github.com/python-poetry/poetry/pull/9948)). |
| 30 | +- Add a warning that package sources are a Poetry-specific feature that is not included in core metadata ([#9935](https://github.com/python-poetry/poetry/pull/9935)). |
| 31 | +- Replace `poetry install --sync` with `poetry sync` in the section about synchronizing dependencies ([#9944](https://github.com/python-poetry/poetry/pull/9944)). |
| 32 | +- Replace `poetry shell` with `poetry env activate` in the basic usage section ([#9963](https://github.com/python-poetry/poetry/pull/9963)). |
| 33 | +- Mention that `project.name` is always required when the `project` section is used ([#9989](https://github.com/python-poetry/poetry/pull/9989)). |
| 34 | +- Fix the constraint of `poetry-plugin-export` in the section about `poetry export` ([#9954](https://github.com/python-poetry/poetry/pull/9954)). |
| 35 | + |
| 36 | +### poetry-core ([`2.0.1`](https://github.com/python-poetry/poetry-core/releases/tag/2.0.1)) |
| 37 | + |
| 38 | +- Replace the deprecated core metadata field `Home-page` with `Project-URL: Homepage` ([#807](https://github.com/python-poetry/poetry-core/pull/807)). |
| 39 | +- Fix an issue where includes from `tool.poetry.packages` without a specified `format` were not initialized with the default value resulting in a `KeyError` ([#805](https://github.com/python-poetry/poetry-core/pull/805)). |
| 40 | +- Fix an issue where some `project.urls` entries were not processed correctly resulting in a `KeyError` ([#807](https://github.com/python-poetry/poetry-core/pull/807)). |
| 41 | +- Fix an issue where dynamic `project.dependencies` via `tool.poetry.dependencies` were ignored if `project.optional-dependencies` were defined ([#811](https://github.com/python-poetry/poetry-core/pull/811)). |
| 42 | + |
| 43 | + |
3 | 44 | ## [2.0.0] - 2025-01-05
|
4 | 45 |
|
5 | 46 | ### Added
|
|
98 | 139 | ### Docs
|
99 | 140 |
|
100 | 141 | - Add information about getting test coverage in the contribution guide ([#9726](https://github.com/python-poetry/poetry/pull/9726)).
|
101 |
| -- Mention `pre-commit-autoupdate` as an alternative to `pre-commit autoupdate` ([#9716](https://github.com/python-poetry/poetry/pull/9716)). |
| 142 | +- Mention `pre-commit-update` as an alternative to `pre-commit autoupdate` ([#9716](https://github.com/python-poetry/poetry/pull/9716)). |
102 | 143 | - Improve the explanation of `exclude` and `include` ([#9734](https://github.com/python-poetry/poetry/pull/9734)).
|
103 | 144 | - Add information about compatible release requirements, i.e. `~=` ([#9783](https://github.com/python-poetry/poetry/pull/9783)).
|
104 | 145 | - Add documentation for using a build script to build extension modules ([#9864](https://github.com/python-poetry/poetry/pull/9864)).
|
@@ -2336,7 +2377,8 @@ Initial release
|
2336 | 2377 |
|
2337 | 2378 |
|
2338 | 2379 |
|
2339 |
| -[Unreleased]: https://github.com/python-poetry/poetry/compare/2.0.0...main |
| 2380 | +[Unreleased]: https://github.com/python-poetry/poetry/compare/2.0.1...main |
| 2381 | +[2.0.1]: https://github.com/python-poetry/poetry/releases/tag/2.0.1 |
2340 | 2382 | [2.0.0]: https://github.com/python-poetry/poetry/releases/tag/2.0.0
|
2341 | 2383 | [1.8.5]: https://github.com/python-poetry/poetry/releases/tag/1.8.5
|
2342 | 2384 | [1.8.4]: https://github.com/python-poetry/poetry/releases/tag/1.8.4
|
|
0 commit comments