Skip to content

Commit af5b69d

Browse files
committed
release: bump to version 1.1.0-rc.1
1 parent a5d8cad commit af5b69d

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
## [1.1.0rc1] - 2022-08-16
4+
5+
### Changed
6+
7+
- Replaced Poetry's helper method `canonicalize_name()` by `packaging.utils.canonicalize_name()` ([#418](https://github.com/python-poetry/poetry-core/pull/418)).
8+
- Removed unused code ([#419](https://github.com/python-poetry/poetry-core/pull/419)).
9+
10+
### Fixed
11+
12+
- Fixed an issue with markers, that results in incorrectly resolved extra dependencies ([#415](https://github.com/python-poetry/poetry-core/pull/415)).
13+
- Fixed an issue where equal markers had not the same hash ([#417](https://github.com/python-poetry/poetry-core/pull/417)).
14+
- Fixed `allows_any()` for local versions ([#433)](https://github.com/python-poetry/poetry-core/pull/433)).
15+
- Fixed an issue with Python constraints from markers ([#436](https://github.com/python-poetry/poetry-core/pull/436)).
16+
317

418
## [1.1.0b3] - 2022-07-09
519

@@ -327,7 +341,8 @@ No changes.
327341
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
328342

329343

330-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0b3...main
344+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0rc1...main
345+
[1.1.0rc1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc1
331346
[1.1.0b3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b3
332347
[1.1.0b2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b2
333348
[1.1.0b1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry-core"
3-
version = "1.1.0b3"
3+
version = "1.1.0rc1"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
66

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.1.0b3"
10+
__version__ = "1.1.0rc1"
1111

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

0 commit comments

Comments
 (0)