Skip to content

Commit

Permalink
Merge pull request python-poetry#8 from python-poetry/release-0.2.0
Browse files Browse the repository at this point in the history
Release 0.2.0
  • Loading branch information
sdispater authored Sep 13, 2021
2 parents 342dda9 + 650f88c commit 2b82c6e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand All @@ -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'" }
Expand Down
1 change: 1 addition & 0 deletions src/poetry_export_plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.2.0"

0 comments on commit 2b82c6e

Please sign in to comment.