Skip to content

Commit

Permalink
release 0.43.1 → 0.43.2 [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 14, 2024
1 parent bc77713 commit 54fd7ac
Show file tree
Hide file tree
Showing 5 changed files with 164 additions and 4 deletions.
160 changes: 160 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.43.1
0.43.2
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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]"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/buvar/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.43.1"
__version__ = "0.43.2"
__version_info__ = tuple(__version__.split("."))


Expand Down

0 comments on commit 54fd7ac

Please sign in to comment.