diff --git a/CHANGELOG.md b/CHANGELOG.md index fac913e..ac1fe9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v0.4.0 (2023-04-07) +### Feature +* Rename plugin from `poetry-dotenv` to `poetry-plugin-dotenv` ([`6c28010`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/6c2801005a297a7738b139014c1239fa5fae2baa)) + ## v0.3.0 (2023-01-29) ### Feature * **dependencies:** Add support of the Python 3.11 ([`8cb07d2`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/8cb07d222fcd30cce61df864755189dbf48f5e63)) diff --git a/pyproject.toml b/pyproject.toml index 8ef9165..1e7b9ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "0.3.0" +version = "0.4.0" description = "poetry-plugin-dotenv - is the plugin that automatically loads environment variables from a dotenv file into the environment before poetry commands are run." license = "MIT" authors = ["Volodymyr Pivoshenko "] diff --git a/src/poetry_plugin_dotenv/__init__.py b/src/poetry_plugin_dotenv/__init__.py index 4de42cb..570c836 100644 --- a/src/poetry_plugin_dotenv/__init__.py +++ b/src/poetry_plugin_dotenv/__init__.py @@ -4,7 +4,7 @@ __summary__ = "poetry-plugin-dotenv - is the plugin that automatically loads environment variables from a dotenv file into the environment before poetry commands are run." __uri__ = "https://github.com/volopivoshenko/poetry-plugin-dotenv" -__version__ = "0.3.0" +__version__ = "0.4.0" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"