Skip to content

Commit 710e59b

Browse files
committed
release: bump version to 1.9.0
1 parent 019257a commit 710e59b

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed

CHANGELOG.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
11
# Change Log
22

33

4+
## [1.9.0] - 2024-02-02
5+
6+
### Added
7+
8+
- Add a `to` key in `tool.poetry.packages` to allow custom subpackage names ([#672](https://github.com/python-poetry/poetry-core/pull/672)).
9+
- Add support for path dependencies that do not define a build system ([#675](https://github.com/python-poetry/poetry-core/pull/675)).
10+
- Add a `tool.poetry.package-mode` key to support non-package mode ([#661](https://github.com/python-poetry/poetry-core/pull/661)).
11+
12+
### Changed
13+
14+
- Update list of supported licenses ([#659](https://github.com/python-poetry/poetry-core/pull/659),
15+
[#669](https://github.com/python-poetry/poetry-core/pull/669),
16+
[#678](https://github.com/python-poetry/poetry-core/pull/678),
17+
[#694](https://github.com/python-poetry/poetry-core/pull/694)).
18+
- Improve support for PEP 691 JSON-based Simple API ([#664](https://github.com/python-poetry/poetry-core/pull/664)).
19+
- Establish zipapp compatibility ([#670](https://github.com/python-poetry/poetry-core/pull/670)).
20+
- Rework list of files included in build artifacts ([#666](https://github.com/python-poetry/poetry-core/pull/666)).
21+
- Improve performance by treating collections in packages as immutable ([#663](https://github.com/python-poetry/poetry-core/pull/663)).
22+
- Deprecate `poetry.core.masonry.builder` ([#682](https://github.com/python-poetry/poetry-core/pull/682)).
23+
- Deprecate scripts that depend on extras ([#690](https://github.com/python-poetry/poetry-core/pull/690)).
24+
25+
### Fixed
26+
27+
- Fix an issue where insignificant errors were printed if the working directory is not inside a git repository ([#684](https://github.com/python-poetry/poetry-core/pull/684)).
28+
- Fix an issue where the project's directory was not recognized as git repository on Windows due to an encoding issue ([#685](https://github.com/python-poetry/poetry-core/pull/685)).
29+
30+
### Vendoring
31+
32+
- [`fastjsonschema==2.19.1`](https://github.com/horejsek/python-fastjsonschema/blob/master/CHANGELOG.txt)
33+
- [`lark==1.1.8`](https://github.com/lark-parser/lark/releases/tag/1.1.9)
34+
35+
436
## [1.8.1] - 2023-10-31
537

638
### Fixed
@@ -601,7 +633,8 @@ No changes.
601633
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
602634

603635

604-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.8.1...main
636+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.9.0...main
637+
[1.9.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.9.0
605638
[1.8.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.8.1
606639
[1.8.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.8.0
607640
[1.7.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.7.0

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry-core"
3-
version = "1.8.1"
3+
version = "1.9.0"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"
@@ -11,8 +11,6 @@ keywords = ["packaging", "dependency", "poetry"]
1111
classifiers = [
1212
"Topic :: Software Development :: Build Tools",
1313
"Topic :: Software Development :: Libraries :: Python Modules",
14-
# Classifiers for Python 3.12 can be removed after Poetry 1.7.0 has been released.
15-
"Programming Language :: Python :: 3.12",
1614
]
1715
packages = [
1816
{ include = "poetry", from = "src" },

src/poetry/core/__init__.py

Lines changed: 1 addition & 1 deletion
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.8.1"
10+
__version__ = "1.9.0"
1111

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

0 commit comments

Comments
 (0)