Skip to content

Commit 52ceb5e

Browse files
committed
Bump version to 0.14.0
1 parent 71b5e87 commit 52ceb5e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/strictdoc_04_release_notes.sdoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ This document maintains a record of all changes to StrictDoc since November 2023
4747

4848
[[SECTION]]
4949
MID: 403c9f0ad6c34b50b25133f1d9357335
50-
TITLE: Unreleased (2025-10-05)
50+
TITLE: 0.14.0 (2025-10-05)
5151

5252
[TEXT]
5353
MID: 9baeff3b28ea4bfe9ca8afe6b21826a8
5454
STATEMENT: >>>
55-
This release introduces a new feature: configuring StrictDoc using a Python file instead of a TOML file, improvements to parsing SDoc nodes from source files, and the removal of the legacy ``Section/[SECTION]`` element.
55+
This release introduces several improvements: configuring StrictDoc using a Python file instead of a TOML file, improvements to parsing SDoc nodes from source files, the removal of the legacy ``Section/[SECTION]`` element, dropped Python 3.8 support.
5656

5757
1\) **Parsing StrictDoc configuration from a Python file:**
5858
StrictDoc can now be configured using a Python file rather than a TOML file. This new method (``strictdoc_config.py``) is intended to replace ``strictdoc.toml`` in the long term.
@@ -71,6 +71,8 @@ The feature for parsing SDoc files from source code has been extended to support
7171

7272
3\) **Removal of legacy Section/[SECTION]:**
7373
The legacy ``Section/[SECTION]`` element has been fully removed from the codebase, completing the migration to composite ``[[SECTION]]`` nodes. From now on, all projects using the old ``[SECTION]`` syntax will generate an error and receive a suggestion to migrate to the new syntax.
74+
75+
4\) **Dropped Python 3.8 support:** We could stay with Python 3.8 a little longer, but several important pip packages that StrictDoc depends on have already dropped support for it, most notably tree-sitter and docutils.
7476
<<<
7577

7678
[[/SECTION]]

strictdoc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from strictdoc.core.environment import SDocRuntimeEnvironment
22

3-
__version__ = "0.13.0"
3+
__version__ = "0.14.0"
44

55

66
environment = SDocRuntimeEnvironment(__file__)

0 commit comments

Comments
 (0)