Skip to content

Commit a1f669f

Browse files
chore(release): 0.8.0
1 parent 0e01688 commit a1f669f

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.8.0](https://github.com/arxlang/douki/compare/0.7.0...0.8.0) (2026-03-02)
5+
6+
7+
### Features
8+
9+
* Remove support for douki decorator ([#12](https://github.com/arxlang/douki/issues/12)) ([0e01688](https://github.com/arxlang/douki/commit/0e016885077b7b9aa3517a11b1fc88b30760d0f4))
10+
411
# [0.7.0](https://github.com/arxlang/douki/compare/0.6.0...0.7.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.7.0" # semantic-release
3+
version = "0.8.0" # 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
@@ -10,7 +10,7 @@ def get_version() -> str:
1010
try:
1111
return importlib_metadata.version(__name__)
1212
except importlib_metadata.PackageNotFoundError: # pragma: no cover
13-
return '0.7.0' # semantic-release
13+
return '0.8.0' # semantic-release
1414

1515

1616
version = get_version()

0 commit comments

Comments
 (0)