From 08ff6d9313bf050070a7af005bc478afb57bf473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randy=20D=C3=B6ring?= <30527984+radoering@users.noreply.github.com> Date: Mon, 30 Jan 2023 06:28:52 +0100 Subject: [PATCH] release: bump version to 1.3.0 --- .pre-commit-config.yaml | 2 +- CHANGELOG.md | 16 ++++++++++++++-- pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 246f2e7..247e6c2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -53,7 +53,7 @@ repos: exclude: ^(install|get)-poetry.py$ - repo: https://github.com/pycqa/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort name: "isort (python)" diff --git a/CHANGELOG.md b/CHANGELOG.md index 64eb82f..9b95641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Change Log +## [1.3.0] - 2023-01-30 + +### Changed + +- Drop some compatibility code and bump minimum required poetry version to 1.3.0 ([#167](https://github.com/python-poetry/poetry-plugin-export/pull/167)). + +### 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)). + + ## [1.2.0] - 2022-11-05 ### Changed @@ -29,7 +40,7 @@ This release fixes test suite compatibility with upcoming Poetry releases. No fu ### Fixed -- Fix an issue where a relative path passed via `-o` was not ìnterpreted relative to the current working directory ([#130](https://github.com/python-poetry/poetry-plugin-export/pull/130)). +- Fix an issue where a relative path passed via `-o` was not interpreted relative to the current working directory ([#130](https://github.com/python-poetry/poetry-plugin-export/pull/130)). - Fix an issue where the names of extras were not normalized according to PEP 685 ([#123](https://github.com/python-poetry/poetry-plugin-export/pull/123)). @@ -125,7 +136,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.2.0...main +[Unreleased]: https://github.com/python-poetry/poetry-plugin-export/compare/1.3.0...main +[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 [1.1.2]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.1.2 [1.1.1]: https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.1.1 diff --git a/pyproject.toml b/pyproject.toml index 294d809..8238c96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-export" -version = "1.2.0" +version = "1.3.0" description = "Poetry plugin to export the dependencies to various formats" authors = ["Sébastien Eustace "] license = "MIT"