Skip to content

Commit e5e4b0c

Browse files
committed
release: bump version to 1.8.3
1 parent dfd4aa1 commit e5e4b0c

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

CHANGELOG.md

+40-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
11
# Change Log
22

33

4+
## [1.8.3] - 2024-05-03
5+
6+
### Added
7+
8+
- Add support for untagged CPython builds with versions ending with a `+` ([#9207](https://github.com/python-poetry/poetry/pull/9207)).
9+
10+
### Changed
11+
12+
- Require `pkginfo>=1.10` to ensure support for packages with metadata version 2.3 ([#9130](https://github.com/python-poetry/poetry/pull/9130)).
13+
- Improve locking on FIPS systems ([#9152](https://github.com/python-poetry/poetry/pull/9152)).
14+
15+
### Fixed
16+
17+
- Fix an issue where unrecognized package metadata versions silently resulted in empty dependencies ([#9203](https://github.com/python-poetry/poetry/pull/9203),
18+
[#9226](https://github.com/python-poetry/poetry/pull/9226)).
19+
- Fix an issue where trailing slashes in git URLs where not handled correctly ([#9205](https://github.com/python-poetry/poetry/pull/9205)).
20+
- Fix an issue where `poetry self` commands printed a warning that the current project cannot be installed ([#9302](https://github.com/python-poetry/poetry/pull/9302)).
21+
- Fix an issue where `poetry install` sporadically failed with a `KeyError` due to a race condition ([#9335](https://github.com/python-poetry/poetry/pull/9335)).
22+
23+
### Docs
24+
25+
- Fix incorrect information about `poetry shell` ([#9060](https://github.com/python-poetry/poetry/pull/9060)).
26+
- Add a git subdirectory example to `poetry add` ([#9080](https://github.com/python-poetry/poetry/pull/9080)).
27+
- Mention interactive credential configuration ([#9074](https://github.com/python-poetry/poetry/pull/9074)).
28+
- Add notes for optional advanced installation steps ([#9098](https://github.com/python-poetry/poetry/pull/9098)).
29+
- Add reference to configuration credentials in documentation of poetry `publish` ([#9110](https://github.com/python-poetry/poetry/pull/9110)).
30+
- Improve documentation for configuring credentials via environment variables ([#9121](https://github.com/python-poetry/poetry/pull/9121)).
31+
- Remove misleading wording around virtual environments ([#9213](https://github.com/python-poetry/poetry/pull/9213)).
32+
- Remove outdated advice regarding seeding keyring backends ([#9213](https://github.com/python-poetry/poetry/pull/9213)).
33+
- Add a `pyproject.toml` example for a dependency with multiple extras ([#9138](https://github.com/python-poetry/poetry/pull/9138)).
34+
- Clarify help of `poetry add` ([#9230](https://github.com/python-poetry/poetry/pull/9230)).
35+
- Add a note how to configure credentials for TestPyPI for `poetry publish` ([#9255](https://github.com/python-poetry/poetry/pull/9255)).
36+
- Fix information about the `--readme` option in `poetry new` ([#9260](https://github.com/python-poetry/poetry/pull/9260)).
37+
- Clarify what is special about the Python constraint in `dependencies` ([#9256](https://github.com/python-poetry/poetry/pull/9256)).
38+
- Update how to uninstall plugins via `pipx` ([#9320](https://github.com/python-poetry/poetry/pull/9320)).
39+
40+
441
## [1.8.2] - 2024-03-02
542

643
### Fixed
@@ -10,7 +47,7 @@
1047
- Improve `lazy-wheel` error handling if the index server pretends to support HTTP range requests but does not respect them ([#9084](https://github.com/python-poetry/poetry/pull/9084)).
1148
- Improve `lazy-wheel` to allow redirects for HEAD requests ([#9087](https://github.com/python-poetry/poetry/pull/9087)).
1249
- Improve debug logging for `lazy-wheel` errors ([#9059](https://github.com/python-poetry/poetry/pull/9059)).
13-
- Fix an issue where the hash of a metadata file could not be calculated correctly due to an encoding issue ([#9048](https://github.com/python-poetry/poetry/pull/9048)).
50+
- Fix an issue where the hash of a metadata file could not be calculated correctly due to an encoding issue ([#9049](https://github.com/python-poetry/poetry/pull/9049)).
1451
- Fix an issue where `poetry add` failed in non-package mode if no project name was set ([#9046](https://github.com/python-poetry/poetry/pull/9046)).
1552
- Fix an issue where a hint to non-package mode was not compliant with the final name of the setting ([#9073](https://github.com/python-poetry/poetry/pull/9073)).
1653

@@ -2152,7 +2189,8 @@ Initial release
21522189

21532190

21542191

2155-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.8.2...master
2192+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.8.3...master
2193+
[1.8.3]: https://github.com/python-poetry/poetry/releases/tag/1.8.3
21562194
[1.8.2]: https://github.com/python-poetry/poetry/releases/tag/1.8.2
21572195
[1.8.1]: https://github.com/python-poetry/poetry/releases/tag/1.8.1
21582196
[1.8.0]: https://github.com/python-poetry/poetry/releases/tag/1.8.0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry"
3-
version = "1.8.2"
3+
version = "1.8.3"
44
description = "Python dependency management and packaging made easy."
55
authors = ["Sébastien Eustace <[email protected]>"]
66
maintainers = [

0 commit comments

Comments
 (0)