Skip to content

Commit 1dffcf2

Browse files
committed
release: bump version to 1.9.1
1 parent cda29e8 commit 1dffcf2

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

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

33

4+
## [1.9.1] - 2024-10-13
5+
6+
### Added
7+
8+
- Add `3.13` to the list of available Python versions ([#747](https://github.com/python-poetry/poetry-core/pull/747)).
9+
10+
411
## [1.9.0] - 2024-02-02
512

613
### Added
@@ -633,7 +640,8 @@ No changes.
633640
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
634641

635642

636-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.9.0...main
643+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.9.1...main
644+
[1.9.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.9.1
637645
[1.9.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.9.0
638646
[1.8.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.8.1
639647
[1.8.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.8.0

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry-core"
3-
version = "1.9.0"
3+
version = "1.9.1"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"
@@ -11,6 +11,8 @@ keywords = ["packaging", "dependency", "poetry"]
1111
classifiers = [
1212
"Topic :: Software Development :: Build Tools",
1313
"Topic :: Software Development :: Libraries :: Python Modules",
14+
# Classifiers for Python 3.13 can be removed after Poetry 1.8.4 has been released.
15+
"Programming Language :: Python :: 3.13",
1416
]
1517
packages = [
1618
{ 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.9.0"
10+
__version__ = "1.9.1"
1111

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

0 commit comments

Comments
 (0)