Skip to content

Commit 0b4c8c7

Browse files
committed
release: bump version to 1.6.0
1 parent 0bdf29e commit 0b4c8c7

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

CHANGELOG.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
# Change Log
22

33

4+
## [1.6.0] - 2023-05-14
5+
6+
### Added
7+
8+
- Improve error message for invalid markers ([#569](https://github.com/python-poetry/poetry-core/pull/569)).
9+
- Increase robustness when deleting temporary directories on Windows ([#460](https://github.com/python-poetry/poetry-core/pull/460)).
10+
- Add support for file dependencies with subdirectories ([#467](https://github.com/python-poetry/poetry-core/pull/467)).
11+
12+
### Changed
13+
14+
- Replace `tomlkit` with `tomli`, which changes the interface of some _internal_ classes ([#483](https://github.com/python-poetry/poetry-core/pull/483)).
15+
- Deprecate `Package.category` ([#561](https://github.com/python-poetry/poetry-core/pull/561)).
16+
17+
### Fixed
18+
19+
- Fix a performance regression in marker handling ([#568](https://github.com/python-poetry/poetry-core/pull/568)).
20+
- Fix an issue where wildcard version constraints were not handled correctly ([#402](https://github.com/python-poetry/poetry-core/pull/402)).
21+
- Fix an issue where `poetry build` created duplicate Python classifiers if they were specified manually ([#578](https://github.com/python-poetry/poetry-core/pull/578)).
22+
- Fix an issue where local versions where not handled correctly ([#579](https://github.com/python-poetry/poetry-core/pull/579)).
23+
24+
### Vendoring
25+
26+
- [`attrs==23.1.0`](https://github.com/python-attrs/attrs/blob/main/CHANGELOG.md)
27+
- [`packaging==23.1`](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
28+
- [`tomli==2.0.1`](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md)
29+
- [`typing-extensions==4.5.0`](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
30+
31+
432
## [1.5.2] - 2023-03-13
533

634
### Fixed
@@ -503,7 +531,8 @@ No changes.
503531
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
504532

505533

506-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.5.2...main
534+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.6.0...main
535+
[1.6.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.6.0
507536
[1.5.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.2
508537
[1.5.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.1
509538
[1.5.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry-core"
3-
version = "1.5.2"
3+
version = "1.6.0"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <[email protected]>"]
66

src/poetry/core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# this cannot presently be replaced with importlib.metadata.version as when building
99
# itself, poetry-core is not available as an installed distribution.
10-
__version__ = "1.5.2"
10+
__version__ = "1.6.0"
1111

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

0 commit comments

Comments
 (0)