From 6a071c181ad82ec3a5d4ecd54d50d08a75470e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randy=20D=C3=B6ring?= <30527984+radoering@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:05:58 +0200 Subject: [PATCH] release: bump version to 1.8.4 --- CHANGELOG.md | 18 +++++++++++++++++- poetry.lock | 10 +++++----- pyproject.toml | 4 ++-- 3 files changed, 24 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84f60b3ab97..6ac7fc89aeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/poetry.lock b/poetry.lock index 59c551a072b..b2689d4a90c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -969,13 +969,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "poetry-core" -version = "1.9.0" +version = "1.9.1" description = "Poetry PEP 517 Build Backend" optional = false -python-versions = ">=3.8,<4.0" +python-versions = "<4.0,>=3.8" files = [ - {file = "poetry_core-1.9.0-py3-none-any.whl", hash = "sha256:4e0c9c6ad8cf89956f03b308736d84ea6ddb44089d16f2adc94050108ec1f5a1"}, - {file = "poetry_core-1.9.0.tar.gz", hash = "sha256:fa7a4001eae8aa572ee84f35feb510b321bd652e5cf9293249d62853e1f935a2"}, + {file = "poetry_core-1.9.1-py3-none-any.whl", hash = "sha256:6f45dd3598e0de8d9b0367360253d4c5d4d0110c8f5c71120a14f0e0f116c1a0"}, + {file = "poetry_core-1.9.1.tar.gz", hash = "sha256:7a2d49214bf58b4f17f99d6891d947a9836c9899a67a5069f52d7b67217f61b8"}, ] [[package]] @@ -1618,4 +1618,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "b517522583e25af6a706350213fcaa4107bf7ea6ac93ac8e3f6a3976a5b9d5c8" +content-hash = "e793d16c7f8a014e1fc36d16b280e271032f4b8cd152ede01638e61a7c6026d8" diff --git a/pyproject.toml b/pyproject.toml index bce3bb5dda7..f83056f6ee0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] maintainers = [ @@ -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"] }