diff --git a/CHANGELOG.md b/CHANGELOG.md index 93b1495..c64a6b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v0.6.10 (2024-02-06) + +### Unknown + +* Merge pull request #184 from volopivoshenko/dependabot/pip/xdoctest-1.1.3 + +build(deps-dev): bump xdoctest from 1.1.2 to 1.1.3 ([`cf2769b`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/cf2769be90a32456c7139d0d72afb201f54b8029)) + + ## v0.6.9 (2024-02-06) ### Build @@ -80,6 +89,22 @@ updated-dependencies: Signed-off-by: dependabot[bot] <support@github.com> ([`64661f1`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/64661f176ead4c76dc9a7fe8e07e7fd9a63e94b4)) +* build(deps-dev): bump xdoctest from 1.1.2 to 1.1.3 + +Bumps [xdoctest](https://github.com/Erotemic/xdoctest) from 1.1.2 to 1.1.3. +- [Release notes](https://github.com/Erotemic/xdoctest/releases) +- [Changelog](https://github.com/Erotemic/xdoctest/blob/main/CHANGELOG.md) +- [Commits](https://github.com/Erotemic/xdoctest/compare/v1.1.2...v1.1.3) + +--- +updated-dependencies: +- dependency-name: xdoctest + dependency-type: direct:development + update-type: version-update:semver-patch +... + +Signed-off-by: dependabot[bot] <support@github.com> ([`01d44d2`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/01d44d2497e19fb9ff24c686b4789411f13188ea)) + * build(deps-dev): bump pytest-sugar from 0.9.7 to 1.0.0 Bumps [pytest-sugar](https://github.com/Teemu/pytest-sugar) from 0.9.7 to 1.0.0. diff --git a/pyproject.toml b/pyproject.toml index aa1ccc1..26f3589 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "0.6.9" +version = "0.6.10" 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 5fd6fbf..8502af3 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.9" +__version__ = "0.6.10" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"