Skip to content

Commit 3242623

Browse files
chore(release): 0.9.1
1 parent 6d98235 commit 3242623

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Release Notes
22
---
33

4+
## [0.9.1](https://github.com/arxlang/douki/compare/0.9.0...0.9.1) (2026-03-03)
5+
6+
7+
### Bug Fixes
8+
9+
* Fix edge cases for *args and **kwargs ([#16](https://github.com/arxlang/douki/issues/16)) ([6d98235](https://github.com/arxlang/douki/commit/6d98235dd1f5a127c65e22c3dd6f30e930c855f0))
10+
411
# [0.9.0](https://github.com/arxlang/douki/compare/0.8.0...0.9.0) (2026-03-02)
512

613

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "douki"
3-
version = "0.9.0" # semantic-release
3+
version = "0.9.1" # semantic-release
44
description = "Documetatio from annotations"
55
readme = "README.md"
66
authors = [

src/douki/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_version() -> str:
1616
try:
1717
return importlib_metadata.version(__name__)
1818
except importlib_metadata.PackageNotFoundError: # pragma: no cover
19-
return '0.9.0' # semantic-release
19+
return '0.9.1' # semantic-release
2020

2121

2222
version = get_version()

0 commit comments

Comments
 (0)