We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 197a538 commit 42ff2a1Copy full SHA for 42ff2a1
2 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "poetry-plugin-export"
3
-version = "0.2.1"
+version = "1.0.0-alpha.0"
4
description = "Poetry plugin to export the dependencies to various formats"
5
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
6
license = "MIT"
src/poetry_plugin_export/__init__.py
@@ -1,4 +1,6 @@
from __future__ import annotations
+from poetry.utils._compat import metadata
-__version__ = "0.2.1"
+
+__version__ = metadata.version("poetry-plugin-export")
0 commit comments