diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c4a8bb..6132c28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.8.0 (2024-03-31) + +### Fix + +* fix(README): resovle issue with missing assets ([`9eb7fc4`](https://github.com/pivoshenko/poetry-plugin-dotenv/commit/9eb7fc4997ece57a445db3fcec599c556c9acba5)) + + ## v0.7.0 (2024-03-31) ### Build diff --git a/pyproject.toml b/pyproject.toml index 15a9c17..b4cce15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "0.7.0" +version = "0.8.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 420c0cd..ff0187e 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__ = "0.7.0" +__version__ = "0.8.0" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"