From 15b455ecf5b4408c9db79fd2f29c33c3586ea160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Mon, 13 Sep 2021 23:12:04 +0200 Subject: [PATCH 1/2] Update poetry --- poetry.lock | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 7e4f24d..b4316bf 100644 --- a/poetry.lock +++ b/poetry.lock @@ -746,7 +746,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" python-versions = "^3.6" -content-hash = "b50cf69bc4454b283a26ff613f4654c53ea9b89e462c8993a56fab36ac9617ff" +content-hash = "e46d0fb8162693205bb056c3fd73a8bd49d4320de9d250ca04cec5a9872ea54d" [metadata.files] appdirs = [ diff --git a/pyproject.toml b/pyproject.toml index c92af2a..4c2538d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ include = [ [tool.poetry.dependencies] python = "^3.6" -poetry = "^1.2.0a1" +poetry = "^1.2.0a2" [tool.poetry.dev-dependencies] black = { version = "^21.8b0", markers = "python_full_version >= '3.6.2' and python_version < '4.0' and implementation_name != 'pypy'" } From 650f88c3ae89202af31eff887833062f4a21ceb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Mon, 13 Sep 2021 23:15:23 +0200 Subject: [PATCH 2/2] Bump version to 0.2.0 --- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- src/poetry_export_plugin/__init__.py | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..84771b2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +## [0.2.0] - 2021-09-13 + +### Added + +- Added support for dependency groups. [#6](https://github.com/python-poetry/poetry-export-plugin/pull/6) + + +[Unreleased]: https://github.com/python-poetry/poetry/compare/0.2.0...main +[0.2.0]: https://github.com/python-poetry/poetry/compare/0.2.0 diff --git a/pyproject.toml b/pyproject.toml index 4c2538d..275c9c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-export-plugin" -version = "0.1.0" +version = "0.2.0" description = "Poetry plugin to export the dependencies to various formats" authors = ["Sébastien Eustace "] license = "MIT" diff --git a/src/poetry_export_plugin/__init__.py b/src/poetry_export_plugin/__init__.py index e69de29..d3ec452 100644 --- a/src/poetry_export_plugin/__init__.py +++ b/src/poetry_export_plugin/__init__.py @@ -0,0 +1 @@ +__version__ = "0.2.0"