diff --git a/CHANGELOG.md b/CHANGELOG.md index b512a84..12703c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v0.6.2 (2024-01-12) + +### Ci + +* ci(CD): update steps ([`4b9ec46`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/4b9ec46f9b9ce63d7b60f39db7957059c4c22370)) + +* ci(CD): update `semantic-release` config ([`48114eb`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/48114eb4a90ed2ea8ab22dede830ba5692c06f33)) + + ## v0.6.1 (2024-01-12) ### Build diff --git a/pyproject.toml b/pyproject.toml index d03efd3..c2b52f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "0.6.1" +version = "0.6.2" 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 1291548..a021d48 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.6.0" +__version__ = "0.6.2" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"