Skip to content

Commit 9124679

Browse files
radoeringneersighted
authored andcommitted
release: bump to version 1.2.0
1 parent 988a864 commit 9124679

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

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

3+
## [1.2.0] - 2022-09-13
4+
5+
### Added
6+
7+
- Added support for subdirectories in `url` dependencies ([#398](https://github.com/python-poetry/poetry-core/pull/398)).
8+
9+
### Changed
10+
- When setting an invalid version constraint an error is raised instead of silently setting "any version" ([#461](https://github.com/python-poetry/poetry-core/pull/461)).
11+
- Allow more characters in author name ([#411](https://github.com/python-poetry/poetry-core/pull/411)).
12+
13+
### Fixed
14+
15+
- Fixed an issue where incorrect `Requires-Dist` information was generated when environment markers where used for optional packages ([#462](https://github.com/python-poetry/poetry-core/pull/462)).
16+
- Fixed an issue where incorrect python constraints were parsed from environment markers ([#457](https://github.com/python-poetry/poetry-core/pull/457)).
17+
- Fixed the hashing of markers and constraints ([#466](https://github.com/python-poetry/poetry-core/pull/466)).
18+
- Fixed an issue where the PEP 508 name of directory dependencies used platform paths ([#463](https://github.com/python-poetry/poetry-core/pull/463)).
19+
20+
321
## [1.1.0] - 2022-08-31
422

523
- No functional changes.
624

25+
726
## [1.1.0rc3] - 2022-08-26
827

928
### Fixed
1029

1130
- Fixed an issue where a malformed URL was passed to pip when installing from a git subdirectory ([#451](https://github.com/python-poetry/poetry-core/pull/451)).
1231

32+
1333
## [1.1.0rc2] - 2022-08-26
1434

1535
### Changed
@@ -365,7 +385,8 @@ No changes.
365385
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
366386

367387

368-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0...main
388+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.2.0...main
389+
[1.2.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.2.0
369390
[1.1.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0
370391
[1.1.0rc3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc3
371392
[1.1.0rc2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc2

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.0"
3+
version = "1.2.0"
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.0"
10+
__version__ = "1.2.0"
1111

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

0 commit comments

Comments
 (0)