diff --git a/CHANGELOG.md b/CHANGELOG.md index 241cb83..adac235 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v2.1.3 (2024-05-08) + +### Documentation + +* docs(README): remove badges ([`acc067f`](https://github.com/pivoshenko/poetry-plugin-dotenv/commit/acc067ff232c0358daf008405164c1f9476bb164)) + +* docs(assets): update logo colors ([`55943bb`](https://github.com/pivoshenko/poetry-plugin-dotenv/commit/55943bb380cd42b066aeba4bc2b60d3c43b3840a)) + + ## v2.1.2 (2024-05-08) ### Documentation diff --git a/pyproject.toml b/pyproject.toml index e91bcf1..8b59d21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "2.1.2" +version = "2.1.3" 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 70498bc..10ba07e 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/pivoshenko/poetry-plugin-dotenv" -__version__ = "2.1.2" +__version__ = "2.1.3" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"