Skip to content

Commit 3df6765

Browse files
chore(release): 0.10.2
1 parent e6e48b0 commit 3df6765

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.10.2](https://github.com/arxlang/douki/compare/0.10.1...0.10.2) (2026-03-04)
5+
6+
7+
### Bug Fixes
8+
9+
* Auto populate private attributes to the docstring ([#20](https://github.com/arxlang/douki/issues/20)) ([e6e48b0](https://github.com/arxlang/douki/commit/e6e48b08232ba87f356581aa8ba58789edb28c3b))
10+
411
## [0.10.1](https://github.com/arxlang/douki/compare/0.10.0...0.10.1) (2026-03-04)
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.10.1" # semantic-release
3+
version = "0.10.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.10.1' # semantic-release
19+
return '0.10.2' # semantic-release
2020

2121

2222
version = get_version()

0 commit comments

Comments
 (0)