Skip to content

Commit

Permalink
release: bump version to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
radoering authored and abn committed Jan 11, 2025
1 parent ed4bb56 commit c5547ec
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Change Log


## [2.0.1] - 2025-01-11

### Changed

- Replace the deprecated core metadata field `Home-page` with `Project-URL: Homepage` ([#807](https://github.com/python-poetry/poetry-core/pull/807)).

### Fixed

- 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)).
- 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)).
- 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)).


## [2.0.0] - 2025-01-04

### Added
Expand Down Expand Up @@ -699,7 +712,8 @@ No changes.
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).


[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.0.0...main
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.0.1...main
[2.0.1]: https://github.com/python-poetry/poetry-core/releases/tag/2.0.1
[2.0.0]: https://github.com/python-poetry/poetry-core/releases/tag/2.0.0
[1.9.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.9.1
[1.9.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.9.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "poetry-core"
version = "2.0.1.dev0"
version = "2.0.1"
description = "Poetry PEP 517 Build Backend"
authors = [
{ name = "Sébastien Eustace", email = "sebastien@eustace.io" }
Expand Down
2 changes: 1 addition & 1 deletion src/poetry/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# this cannot presently be replaced with importlib.metadata.version as when building
# itself, poetry-core is not available as an installed distribution.
__version__ = "2.0.1.dev0"
__version__ = "2.0.1"

__vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()

Expand Down

0 comments on commit c5547ec

Please sign in to comment.