diff --git a/CHANGELOG.md b/CHANGELOG.md index a3be4b9..26229a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v2.2.2 (2024-06-30) + +### Documentation + +* docs(README): update badges ([`008aa99`](https://github.com/pivoshenko/poetry-plugin-dotenv/commit/008aa99e9d953ee19b5230a06491d0d64e5af972)) + ## v2.2.1 (2024-06-29) ### Ci diff --git a/pyproject.toml b/pyproject.toml index a30958b..29cbffa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "2.2.1" +version = "2.2.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 cd7582d..0932084 100644 --- a/src/poetry_plugin_dotenv/__init__.py +++ b/src/poetry_plugin_dotenv/__init__.py @@ -7,7 +7,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/pivoshenko/poetry-plugin-dotenv" -__version__ = "2.2.1" +__version__ = "2.2.2" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"