Skip to content

Commit

Permalink
release: bump version to 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
radoering committed Oct 12, 2024
1 parent dd6ec11 commit 0bc0d5f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log


## [1.9.1] - 2024-10-12

### Added

- Add `3.13` to the list of available Python versions ([#747](https://github.com/python-poetry/poetry-core/pull/747)).


## [1.9.0] - 2024-02-02

### Added
Expand Down Expand Up @@ -633,7 +640,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/1.9.0...main
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.9.1...main
[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
[1.8.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.8.1
[1.8.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.8.0
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry-core"
version = "1.9.0"
version = "1.9.1"
description = "Poetry PEP 517 Build Backend"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
license = "MIT"
Expand All @@ -11,6 +11,8 @@ keywords = ["packaging", "dependency", "poetry"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
# Classifiers for Python 3.13 can be removed after Poetry 1.8.4 has been released.
"Programming Language :: Python :: 3.13",
]
packages = [
{ include = "poetry", from = "src" },
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__ = "1.9.0"
__version__ = "1.9.1"

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

Expand Down

0 comments on commit 0bc0d5f

Please sign in to comment.