Skip to content

Commit 00f4921

Browse files
Secrusneersighted
andcommitted
release: bump version to 1.4.0
Co-authored-by: Bjorn Neergaard <bjorn@neersighted.com>
1 parent efc7349 commit 00f4921

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

CHANGELOG.md

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

3+
## [1.4.0] - 2022-11-22
4+
5+
### Added
6+
7+
- The PEP 517 `metadata_directory` is now respected as an input to the `build_wheel` hook ([#487](https://github.com/python-poetry/poetry-core/pull/487)).
8+
9+
### Changed
10+
11+
- Sources are now considered more carefully when dealing with dependencies with environment markers ([#497](https://github.com/python-poetry/poetry-core/pull/497)).
12+
- `EmptyConstraint` is now hashable ([#513](https://github.com/python-poetry/poetry-core/pull/513)).
13+
- `ParseConstraintError` is now raised on version and constraint parsing errors, and includes information on the package that caused the error ([#514](https://github.com/python-poetry/poetry-core/pull/514)).
14+
15+
### Fixed
16+
17+
- Fix an issue where invalid PEP 508 requirements were generated due to a missing space before semicolons ([#510](https://github.com/python-poetry/poetry-core/pull/510)).
18+
- Fix an issue where relative paths were encoded into package requirements, instead of a file:// URL as required by PEP 508 ([#512](https://github.com/python-poetry/poetry-core/pull/512)).
19+
20+
### Vendoring
21+
22+
- [`jsonschema==4.17.0`](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
23+
- [`lark==1.1.14`](https://github.com/lark-parser/lark/releases/tag/1.1.4)
24+
- [`pyrsistent==0.19.2`](https://github.com/tobgu/pyrsistent/blob/master/CHANGES.txt)
25+
- [`tomlkit==0.11.6`](https://github.com/sdispater/tomlkit/blob/master/CHANGELOG.md)
26+
- [`typing-extensions==4.4.0`](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
27+
328
## [1.3.2] - 2022-10-07
429

530
### Fixed
@@ -418,7 +443,10 @@ No changes.
418443
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
419444

420445

421-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.3.0...main
446+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.4.0...main
447+
[1.4.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.4.0
448+
[1.3.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.3.2
449+
[1.3.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.3.1
422450
[1.3.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.3.0
423451
[1.2.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.2.0
424452
[1.1.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0

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.3.2"
3+
version = "1.4.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.3.2"
10+
__version__ = "1.4.0"
1111

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

0 commit comments

Comments
 (0)