Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: bump version to 1.8.4 #9767

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Change Log


## [1.8.4] - 2024-10-14

### Added

- **Add official support for Python 3.13** ([#9523](https://github.com/python-poetry/poetry/pull/9523)).

### Changed

- Require `virtualenv>=20.26.6` to mitigate potential command injection when running `poetry shell` in untrusted projects ([#9757](https://github.com/python-poetry/poetry/pull/9757)).

### poetry-core ([`1.9.1`](https://github.com/python-poetry/poetry-core/releases/tag/1.9.1))

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


## [1.8.3] - 2024-05-08

### Added
Expand Down Expand Up @@ -2189,7 +2204,8 @@ Initial release



[Unreleased]: https://github.com/python-poetry/poetry/compare/1.8.3...master
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.8.4...master
[1.8.4]: https://github.com/python-poetry/poetry/releases/tag/1.8.4
[1.8.3]: https://github.com/python-poetry/poetry/releases/tag/1.8.3
[1.8.2]: https://github.com/python-poetry/poetry/releases/tag/1.8.2
[1.8.1]: https://github.com/python-poetry/poetry/releases/tag/1.8.1
Expand Down
10 changes: 5 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry"
version = "1.8.3"
version = "1.8.4"
description = "Python dependency management and packaging made easy."
authors = ["Sébastien Eustace <[email protected]>"]
maintainers = [
Expand Down Expand Up @@ -31,7 +31,7 @@ Changelog = "https://python-poetry.org/history/"
[tool.poetry.dependencies]
python = "^3.8"

poetry-core = "1.9.0"
poetry-core = "1.9.1"
poetry-plugin-export = "^1.6.0"
build = "^1.0.3"
cachecontrol = { version = "^0.14.0", extras = ["filecache"] }
Expand Down
Loading