diff --git a/CHANGELOG.md b/CHANGELOG.md index 230b25c7e..402330f3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.2.0a26 (2025-09-29) + +### Feat + +- default value for a calculated variable with an unknown optional variable +- add integer type which will replace number type + ## 0.2.0a25 (2025-09-22) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 30438d392..bf6577e23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"] [project] name = "rougail.output_doc" -version = "0.2.0a25" +version = "0.2.0a26" authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}] readme = "README.md" description = "Rougail output doc" diff --git a/src/rougail/output_doc/__version__.py b/src/rougail/output_doc/__version__.py index 2957e0463..c8b95de43 100644 --- a/src/rougail/output_doc/__version__.py +++ b/src/rougail/output_doc/__version__.py @@ -1 +1 @@ -__version__ = "0.2.0a25" +__version__ = "0.2.0a26"