diff --git a/CHANGELOG.md b/CHANGELOG.md index 51ff259..eeda7a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [v0.6.0](https://github.com/doclang-project/doclang/releases/tag/v0.6.0) + +* improve spec export, minor test renaming (#91) +* allow full sem. body in ``, add `` for chart tables (#90) + * **BREAKING CHANGE**: chart-specific element body preamble shape changed from `` -> `` to `` -> `` + ## [v0.5.0](https://github.com/doclang-project/doclang/releases/tag/v0.5.0) * refine spec recommendations, add example fixes, BibTeX citation, PyPI metadata (#88) diff --git a/doclang/doclang.xsd b/doclang/doclang.xsd index ffa4efb..6e16272 100644 --- a/doclang/doclang.xsd +++ b/doclang/doclang.xsd @@ -5,7 +5,7 @@ xmlns:dl="https://www.doclang.ai/ns/v0" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" - version="0.5.0" + version="0.6.0" > @@ -708,13 +708,13 @@ - + - + diff --git a/exports/doclang-styled.docx b/exports/doclang-styled.docx index 8c53087..050a272 100644 Binary files a/exports/doclang-styled.docx and b/exports/doclang-styled.docx differ diff --git a/exports/doclang.docx b/exports/doclang.docx index 87c1ebe..96083a0 100644 Binary files a/exports/doclang.docx and b/exports/doclang.docx differ diff --git a/exports/doclang.pdf b/exports/doclang.pdf index 273341d..52ded66 100644 Binary files a/exports/doclang.pdf and b/exports/doclang.pdf differ diff --git a/pyproject.toml b/pyproject.toml index 8f6b5d8..aba8a91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "doclang" -version = "0.5.0" # DO NOT EDIT MANUALLY, updated automatically +version = "0.6.0" # DO NOT EDIT MANUALLY, updated automatically description = "DocLang reference validator" readme = "README.md" requires-python = ">=3.10" diff --git a/reference/input/reference.xlsx b/reference/input/reference.xlsx index 20cc7ac..b33a261 100644 Binary files a/reference/input/reference.xlsx and b/reference/input/reference.xlsx differ diff --git a/spec.md b/spec.md index 3331746..38ab7dd 100644 --- a/spec.md +++ b/spec.md @@ -1,6 +1,6 @@ # DocLang: Universal AI Document Format -Version: 0.5 +Version: 0.6 ## Introduction and Overview @@ -1975,7 +1975,7 @@ Exists exactly once, as root element. | Attribute | Required / Optional | Allowed Values | Description | |-----------|----------|----------------|-------------| | `xmlns` | Optional; default: "https://www.doclang.ai/ns/v0" | {"https://www.doclang.ai/ns/v0"} | The DocLang specification version namespace. | -| `version` | Optional; default: "0.5" | {"0.5"} | The DocLang specification version the document is supposed to validate against, in "MAJOR.MINOR" format, i.e. first two positions of Semantic Verisoning. | +| `version` | Optional; default: "0.6" | {"0.6"} | The DocLang specification version the document is supposed to validate against, in "MAJOR.MINOR" format, i.e. first two positions of Semantic Verisoning. | ##### Allowed Content Types diff --git a/uv.lock b/uv.lock index 68fbe1b..19b8431 100644 --- a/uv.lock +++ b/uv.lock @@ -1,5 +1,5 @@ version = 1 -revision = 3 +revision = 2 requires-python = ">=3.10" resolution-markers = [ "python_full_version >= '3.15' and sys_platform == 'win32'", @@ -351,7 +351,7 @@ wheels = [ [[package]] name = "doclang" -version = "0.5.0" +version = "0.6.0" source = { editable = "." } dependencies = [ { name = "lxml" },