Skip to content

Commit 41bd035

Browse files
committed
release: bump version to 1.5.0
1 parent 7921a8b commit 41bd035

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

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

33

4+
## [1.5.0] - 2023-08-20
5+
6+
### Changed
7+
8+
- Drop support for Python 3.7 ([#189](https://github.com/python-poetry/poetry-plugin-export/pull/189)).
9+
- Improve warning when the lock file is not consistent with pyproject.toml ([#215](https://github.com/python-poetry/poetry-plugin-export/pull/215)).
10+
11+
### Fixed
12+
13+
- Fix an issue where markers for dependencies required by an extra were not generated correctly ([#209](https://github.com/python-poetry/poetry-plugin-export/pull/209)).
14+
15+
416
## [1.4.0] - 2023-05-29
517

618
### Changed
@@ -156,7 +168,8 @@ This release fixes test suite compatibility with upcoming Poetry releases. No fu
156168
- Added support for dependency groups. [#6](https://github.com/python-poetry/poetry-plugin-export/pull/6)
157169

158170

159-
[Unreleased]: https://github.com/python-poetry/poetry-plugin-export/compare/1.4.0...main
171+
[Unreleased]: https://github.com/python-poetry/poetry-plugin-export/compare/1.5.0...main
172+
[1.5.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.5.0
160173
[1.4.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.4.0
161174
[1.3.1]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.3.1
162175
[1.3.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.3.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-plugin-export"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
description = "Poetry plugin to export the dependencies to various formats"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"

tests/test_exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ def test_exporter_can_export_requirements_txt_with_nested_packages_and_markers(
447447
"b": Dependency.create_from_pep_508(f"b==4.5.6 ; {marker_py_windows}"),
448448
"c": Dependency.create_from_pep_508(f"c==7.8.9 ; {marker_py_win32}"),
449449
"d": Dependency.create_from_pep_508(
450-
f"d==0.0.1 ; {marker_py_win32.union(marker_py_windows)}"
450+
f"d==0.0.1 ; {marker_py_windows.union(marker_py_win32)}"
451451
),
452452
}
453453

0 commit comments

Comments
 (0)