diff --git a/CHANGELOG.md b/CHANGELOG.md index 17539f7..081102d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v0.6.27 (2024-03-18) + +### Unknown + +* Merge pull request #209 from volopivoshenko/dependabot/pip/coverage-7.4.4 + +build(deps-dev): bump coverage from 7.4.3 to 7.4.4 ([`b5ff1c7`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/b5ff1c7220170f899facabce5faef52cefb8e222)) + + ## v0.6.26 (2024-03-18) ### Unknown @@ -30,6 +39,22 @@ updated-dependencies: Signed-off-by: dependabot[bot] <support@github.com> ([`e097c4a`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/e097c4a17dbd1277f817ddb971fd258d109af3b6)) +* build(deps-dev): bump coverage from 7.4.3 to 7.4.4 + +Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.4.3 to 7.4.4. +- [Release notes](https://github.com/nedbat/coveragepy/releases) +- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) +- [Commits](https://github.com/nedbat/coveragepy/compare/7.4.3...7.4.4) + +--- +updated-dependencies: +- dependency-name: coverage + dependency-type: direct:development + update-type: version-update:semver-patch +... + +Signed-off-by: dependabot[bot] <support@github.com> ([`24cd501`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/24cd50164f25527caf36f02d013f438bc9def396)) + * build(deps-dev): bump black from 24.2.0 to 24.3.0 Bumps [black](https://github.com/psf/black) from 24.2.0 to 24.3.0. diff --git a/pyproject.toml b/pyproject.toml index 79ba9c7..4c17c5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "0.6.26" +version = "0.6.27" 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 0cc64a3..4382524 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.26" +__version__ = "0.6.27" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"