Skip to content

Commit f018be6

Browse files
chore(release): 0.9.2
1 parent ae3a37e commit f018be6

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.2](https://github.com/arxlang/douki/compare/0.9.1...0.9.2) (2026-03-03)
5+
6+
7+
### Bug Fixes
8+
9+
* Fix variadic positional and keyword feature ([#17](https://github.com/arxlang/douki/issues/17)) ([ae3a37e](https://github.com/arxlang/douki/commit/ae3a37e7d84a7d85532476bae7bc7b93ff31327e))
10+
411
## [0.9.1](https://github.com/arxlang/douki/compare/0.9.0...0.9.1) (2026-03-03)
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.1" # semantic-release
3+
version = "0.9.2" # 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.1' # semantic-release
19+
return '0.9.2' # semantic-release
2020

2121

2222
version = get_version()

0 commit comments

Comments
 (0)