diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c44252..ab4138f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v0.5.0 (2023-06-02) + +### Feature + +* Update linter ([`02d54a7`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/02d54a7b5101d7fdcdf03275046de64eaaa15750)) + +### Documentation + +* Resolve invalid names ([`52be123`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/52be12367ad46c3d914db581c4e4657e49e512d0)) +* Update badges ([`b88884a`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/b88884a11699a21489556b30ab8c666c772cc4c2)) + ## v0.4.1 (2023-04-07) ### Fix * **docs:** Add demo ([`dfbf7a4`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/dfbf7a496c33ff4e652afb908ba542750ed85c5c)) diff --git a/pyproject.toml b/pyproject.toml index 2aacdb1..632f187 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "0.4.1" +version = "0.5.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 30340d5..ff664c9 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.4.1" +__version__ = "0.5.0" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"