Skip to content

Commit b111cd6

Browse files
committed
release: bump version to 1.7.0
1 parent c3fea06 commit b111cd6

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,6 +1,33 @@
11
# Change Log
22

33

4+
## [1.7.0] - 2023-08-20
5+
6+
### Added
7+
8+
- Optionally use resolved references when converting a VCS dependency to a PEP 508 dependency specification ([#603](https://github.com/python-poetry/poetry-core/pull/603)).
9+
- Improve performance of marker handling ([#609](https://github.com/python-poetry/poetry-core/pull/609)).
10+
11+
### Changed
12+
13+
- Drop support for Python 3.7 ([#566](https://github.com/python-poetry/poetry-core/pull/566)).
14+
- Remove deprecated `poetry.core.constraints.generic` and `poetry.core.semver` ([#601](https://github.com/python-poetry/poetry-core/pull/601)).
15+
- Allow `|` as a value separator in markers with the operators `in` and `not in` ([#608](https://github.com/python-poetry/poetry-core/pull/608)).
16+
- Put pretty name (instead of normalized name) in metadata ([#620](https://github.com/python-poetry/poetry-core/pull/620)).
17+
- Update list of supported licenses ([#623](https://github.com/python-poetry/poetry-core/pull/623)).
18+
19+
### Fixed
20+
21+
- Fix an issue where the encoding was not handled correctly when calling a subprocess ([#602](https://github.com/python-poetry/poetry-core/pull/602)).
22+
- Fix an issue where caret constraints with additional whitespace could not be parsed ([#606](https://github.com/python-poetry/poetry-core/pull/606)).
23+
- Fix an issue where PEP 508 dependency specifications with names starting with a digit could not be parsed ([#607](https://github.com/python-poetry/poetry-core/pull/607)).
24+
- Fix an issue where Poetry considered an unrelated `.gitignore` file resulting in an empty wheel ([#611](https://github.com/python-poetry/poetry-core/pull/611)).
25+
26+
### Vendoring
27+
28+
- [`lark==1.1.7`](https://github.com/lark-parser/lark/releases/tag/1.1.7)
29+
30+
431
## [1.6.1] - 2023-05-29
532

633
### Fixed
@@ -540,7 +567,8 @@ No changes.
540567
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
541568

542569

543-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.6.1...main
570+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.7.0...main
571+
[1.7.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.7.0
544572
[1.6.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.6.1
545573
[1.6.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.6.0
546574
[1.5.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.2

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.7.0.dev0"
3+
version = "1.7.0"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
66
license = "MIT"

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.7.0.dev0"
10+
__version__ = "1.7.0"
1111

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

0 commit comments

Comments
 (0)