From b85dd6bca5fb59636ded455055822df5214751be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 5 Dec 2024 12:59:24 +0000 Subject: [PATCH] =?UTF-8?q?release:=200.43.14=20=E2=86=92=200.43.15=20[ski?= =?UTF-8?q?p-ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ VERSION | 2 +- pyproject.toml | 2 +- setup.py | 2 +- src/buvar/__init__.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79d8133..4f73c61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.43.15 (2024-12-05) + +### Fix + +- use context in factory (#20) + ## 0.43.14 (2024-12-05) ### Fix diff --git a/VERSION b/VERSION index 79c142d..93a5caa 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.43.14 +0.43.15 diff --git a/pyproject.toml b/pyproject.toml index 464ed5c..2240fbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.commitizen] name = "cz_conventional_commits" -version = "0.43.14" +version = "0.43.15" tag_format = "$version" bump_message = "release: $current_version → $new_version [skip-ci]" diff --git a/setup.py b/setup.py index c140b5d..e377e1d 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def finalize_options(self): setup_kwargs = { "name": "buvar", - "version": "0.43.14", + "version": "0.43.15", "description": "Asyncio plugins, components, dependency injection and configs", "long_description": description, "long_description_content_type": "text/x-rst", diff --git a/src/buvar/__init__.py b/src/buvar/__init__.py index 62a41b2..a37641f 100644 --- a/src/buvar/__init__.py +++ b/src/buvar/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.43.14" +__version__ = "0.43.15" __version_info__ = tuple(__version__.split("."))