From 38dc465390cf40ab7e8914aee5cb99677fc613d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randy=20D=C3=B6ring?= <30527984+radoering@users.noreply.github.com> Date: Sat, 27 May 2023 17:35:09 +0200 Subject: [PATCH] release: bump version to 1.4.0 --- CHANGELOG.md | 16 ++++++++++++++-- pyproject.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3317b7..1af69ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Change Log +## [1.4.0] - 2023-05-29 + +### Changed + +- Bump minimum required poetry version to 1.5.0 ([#196](https://github.com/python-poetry/poetry-plugin-export/pull/196)). + +### Fixed + +- Fix an issue where `--extra-index-url` and `--trusted-host` was not generated for sources with priority `explicit` ([#205](https://github.com/python-poetry/poetry-plugin-export/pull/205)). + + ## [1.3.1] - 2023-04-17 This release mainly fixes test suite compatibility with upcoming Poetry releases. @@ -18,7 +29,7 @@ This release mainly fixes test suite compatibility with upcoming Poetry releases ### Fixed -- Fix an issue were the export failed if there was a circular dependency on the root package ([#118](https://github.com/python-poetry/poetry-plugin-export/pull/118)). +- Fix an issue where the export failed if there was a circular dependency on the root package ([#118](https://github.com/python-poetry/poetry-plugin-export/pull/118)). ## [1.2.0] - 2022-11-05 @@ -145,7 +156,8 @@ This release fixes test suite compatibility with upcoming Poetry releases. No fu - Added support for dependency groups. [#6](https://github.com/python-poetry/poetry-plugin-export/pull/6) -[Unreleased]: https://github.com/python-poetry/poetry-plugin-export/compare/1.3.1...main +[Unreleased]: https://github.com/python-poetry/poetry-plugin-export/compare/1.4.0...main +[1.4.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.4.0 [1.3.1]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.3.1 [1.3.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.3.0 [1.2.0]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.2.0 diff --git a/pyproject.toml b/pyproject.toml index 8c8be8b..38938d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-export" -version = "1.3.1" +version = "1.4.0" description = "Poetry plugin to export the dependencies to various formats" authors = ["Sébastien Eustace "] license = "MIT"