diff --git a/CHANGELOG.md b/CHANGELOG.md index b80304b..d5f795d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,37 @@ # Change Log +## [1.0.0] - 2022-04-05 + +### Fixed + +- Fixed an issue with dependency selection when duplicates exist with different markers. [poetry#4932](https://github.com/python-poetry/poetry/pull/4932) +- Fixed an issue where unconstrained duplicate dependencies are listed with conditional on python version. [poetry#5141](https://github.com/python-poetry/poetry/issues/5141) + +### Changes + +- Export command now constraints all exported dependencies with the root project's python version constraint. [poetry#5156](https://github.com/python-poetry/poetry/pull/5156) + +### Added + +- Added support for `--without-urls` option. [poetry#4763](https://github.com/python-poetry/poetry/pull/4763) + + ## [0.2.1] - 2021-11-24 ### Fixed -- Fixed the output for packages with markers. [#13](https://github.com/python-poetry/poetry-export-plugin/pull/13) -- Check the existence of the `export` command before attempting to delete it. [#18](https://github.com/python-poetry/poetry-export-plugin/pull/18) +- Fixed the output for packages with markers. [#13](https://github.com/python-poetry/poetry-plugin-export/pull/13) +- Check the existence of the `export` command before attempting to delete it. [#18](https://github.com/python-poetry/poetry-plugin-export/pull/18) ## [0.2.0] - 2021-09-13 ### Added -- Added support for dependency groups. [#6](https://github.com/python-poetry/poetry-export-plugin/pull/6) +- Added support for dependency groups. [#6](https://github.com/python-poetry/poetry-plugin-export/pull/6) -[Unreleased]: https://github.com/python-poetry/poetry/compare/0.2.1...main -[0.2.1]: https://github.com/python-poetry/poetry/compare/0.2.1 -[0.2.0]: https://github.com/python-poetry/poetry/compare/0.2.0 +[Unreleased]: https://github.com/python-poetry/poetry-plugin-export/compare/1.0.0...main +[1.0.0]: https://github.com/python-poetry/poetry-plugin-export/compare/1.0.0 +[0.2.1]: https://github.com/python-poetry/poetry-plugin-export/compare/0.2.1 +[0.2.0]: https://github.com/python-poetry/poetry-plugin-export/compare/0.2.0 diff --git a/pyproject.toml b/pyproject.toml index b2cc34a..b7c5be8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-export" -version = "1.0.0-alpha.0" +version = "1.0.0" description = "Poetry plugin to export the dependencies to various formats" authors = ["Sébastien Eustace "] license = "MIT" diff --git a/src/poetry_plugin_export/command.py b/src/poetry_plugin_export/command.py index 7a62f6d..150c86d 100644 --- a/src/poetry_plugin_export/command.py +++ b/src/poetry_plugin_export/command.py @@ -73,7 +73,6 @@ def handle(self) -> None: ) exporter = Exporter(self.poetry) - print(exporter, "<<<<<<<") exporter.only_groups(list(self.activated_groups)) exporter.with_extras(self.option("extras")) exporter.with_hashes(not self.option("without-hashes"))