diff --git a/CHANGELOG.md b/CHANGELOG.md index adf2bb6..c5ce7bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ +## v0.6.13 (2024-02-19) + +### Build + +* build(deps-dev): bump pyupgrade from 3.15.0 to 3.15.1 + +Bumps [pyupgrade](https://github.com/asottile/pyupgrade) from 3.15.0 to 3.15.1. +- [Commits](https://github.com/asottile/pyupgrade/compare/v3.15.0...v3.15.1) + +--- +updated-dependencies: +- dependency-name: pyupgrade + dependency-type: direct:development + update-type: version-update:semver-patch +... + +Signed-off-by: dependabot[bot] <support@github.com> ([`e659100`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/e659100852a91c47dd7b38c9804ef9cd6992ec54)) + +### Unknown + +* Merge pull request #193 from volopivoshenko/dependabot/pip/pyupgrade-3.15.1 + +build(deps-dev): bump pyupgrade from 3.15.0 to 3.15.1 ([`4451de6`](https://github.com/volopivoshenko/poetry-plugin-dotenv/commit/4451de63e27d0659e17129ac1bcb1d7527020274)) + + ## v0.6.12 (2024-02-12) ### Build diff --git a/pyproject.toml b/pyproject.toml index 19aa766..93cca30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-dotenv" -version = "0.6.12" +version = "0.6.13" 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 ffca0d8..2e49818 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.12" +__version__ = "0.6.13" __author__ = "Volodymyr Pivoshenko" __email__ = "volodymyr.pivoshenko@gmail.com"