Skip to content

Commit f0c8f73

Browse files
committed
release: bump version to 1.6.0
1 parent 91988d1 commit f0c8f73

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

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

33

4+
## [1.6.0] - 2023-10-30
5+
6+
### Added
7+
8+
- Add an `--all-extras` option ([#241](https://github.com/python-poetry/poetry-plugin-export/pull/241)).
9+
10+
### Fixed
11+
12+
- Fix an issue where git dependencies are exported with the branch name instead of the resolved commit hash ([#213](https://github.com/python-poetry/poetry-plugin-export/pull/213)).
13+
14+
415
## [1.5.0] - 2023-08-20
516

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

170181

171-
[Unreleased]: https://github.com/python-poetry/poetry-plugin-export/compare/1.5.0...main
182+
[Unreleased]: https://github.com/python-poetry/poetry-plugin-export/compare/1.6.0...main
183+
[1.6.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.6.0
172184
[1.5.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.5.0
173185
[1.4.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.4.0
174186
[1.3.1]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.3.1

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
[tool.poetry]
22
name = "poetry-plugin-export"
3-
version = "1.5.0"
3+
version = "1.6.0"
44
description = "Poetry plugin to export the dependencies to various formats"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"
77
readme = "README.md"
88
homepage = "https://python-poetry.org/"
99
repository = "https://github.com/python-poetry/poetry-plugin-export"
10+
# Classifiers for Python 3.12 can be removed after Poetry 1.7.0 has been released.
11+
classifiers = ["Programming Language :: Python :: 3.12"]
1012

1113
packages = [
1214
{ include = "poetry_plugin_export", from = "src" }

tests/command/test_command_export.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,8 @@ def test_extras_conflicts_all_extras(tester: CommandTester, do_lock: None) -> No
232232

233233
assert tester.status_code == 1
234234
assert (
235-
tester.io.fetch_error()
236-
== "You cannot specify explicit `--extras` while exporting using"
237-
" `--all-extras`.\n"
235+
"You cannot specify explicit `--extras` while exporting using `--all-extras`.\n"
236+
in tester.io.fetch_error()
238237
)
239238

240239

0 commit comments

Comments
 (0)