From 54fd7ac7c4113c4ed3e886259ae599f4fa5d8eff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 14 May 2024 09:54:42 +0000 Subject: [PATCH] =?UTF-8?q?release=200.43.1=20=E2=86=92=200.43.2=20[skip-c?= =?UTF-8?q?i]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 160 ++++++++++++++++++++++++++++++++++++++++++ VERSION | 2 +- pyproject.toml | 2 +- setup.py | 2 +- src/buvar/__init__.py | 2 +- 5 files changed, 164 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..233ed89 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,160 @@ +## 0.43.2 (2024-05-14) + +### Fix + +- commitizen version (#6) +- wrong build workflow filename (#5) +- GHA add bump (#4) +- remov loop from event + +## 0.43.1 (2023-04-21) + +### Fix + +- bumpversion + +## 0.43.0 (2021-07-23) + +### Feat + +- refactored adapter lookup + +### Fix + +- for whatever reasong sl was failing suddenly + +## 0.42.4 (2021-06-27) + +### Fix + +- Adapter recognized base classes now + +## 0.42.3 (2021-06-27) + +### Fix + +- fork was broken + +## 0.42.2 (2021-06-27) + +### Fix + +- terminating forks + +## 0.42.1 (2021-06-26) + +## 0.42.0 (2021-06-26) + +### Feat + +- fork process and share sockets + +## 0.41.6 (2021-02-22) + +### Fix + +- task factory was reset to early + +## 0.41.5 (2021-02-22) + +## 0.41.4 (2021-02-15) + +## 0.41.2 (2021-02-14) + +## v0.41.0 (2020-09-17) + +## v0.40.0 (2020-07-21) + +## v0.39.1 (2020-05-27) + +## v0.39.0 (2020-05-25) + +## v0.38.0 (2020-05-19) + +## v0.37.0 (2020-05-12) + +## v0.36.0 (2020-04-29) + +## v0.35.1 (2020-04-28) + +## v0.35.0 (2020-04-28) + +## v0.34.0 (2020-04-21) + +## v0.33.0 (2020-04-17) + +## v0.32.1 (2020-04-16) + +## v0.32.0 (2020-04-16) + +## v0.31.0 (2020-04-09) + +## v0.30.2 (2020-04-08) + +## v0.30.1 (2020-04-08) + +## v0.30.0 (2020-04-01) + +## v0.29.0 (2020-03-26) + +## v0.28.1 (2020-03-26) + +## v0.28.0 (2020-03-25) + +## v0.27.0 (2020-03-20) + +## v0.26.0 (2020-03-18) + +## v0.25.0 (2020-03-16) + +## v0.24.0 (2020-03-13) + +## v0.23.1 (2020-03-09) + +## v0.23.0 (2020-03-06) + +## v0.22.0 (2020-02-20) + +## v0.20.2 (2019-12-04) + +## v0.20.1 (2019-12-04) + +## v0.19.0 (2019-11-11) + +## v0.18.0 (2019-11-04) + +## v0.17.0 (2019-10-30) + +## v0.16.0 (2019-10-25) + +## v0.14.0 (2019-10-14) + +## v0.13.0 (2019-10-14) + +## v0.12.0 (2019-10-08) + +## v0.11.0 (2019-07-31) + +## v0.10.1 (2019-07-15) + +## v0.10.0 (2019-07-15) + +## v0.9.1 (2019-07-09) + +## v0.9.0 (2019-07-09) + +## v0.8.0 (2019-07-02) + +## v0.7.0 (2019-06-27) + +## v0.6.1 (2019-06-26) + +## v0.6.0 (2019-06-25) + +## v0.5.0 (2019-05-20) + +## v0.4.0 (2019-05-20) + +## v0.3.0 (2019-05-20) + +## v0.2.0 (2019-05-20) diff --git a/VERSION b/VERSION index f8287cf..fda7553 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.43.1 +0.43.2 diff --git a/pyproject.toml b/pyproject.toml index d8e093a..f5601f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.commitizen] name = "cz_conventional_commits" -version = "0.43.1" +version = "0.43.2" tag_format = "$version" bump_message = "release $current_version → $new_version [skip-ci]" diff --git a/setup.py b/setup.py index 6a1d826..9352958 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ def finalize_options(self): setup_kwargs = { "name": "buvar", - "version": "0.43.1", + "version": "0.43.2", "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 5c59ec3..3c4214f 100644 --- a/src/buvar/__init__.py +++ b/src/buvar/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.43.1" +__version__ = "0.43.2" __version_info__ = tuple(__version__.split("."))