Skip to content

Commit 84cbd85

Browse files
authored
Merge pull request #2584 from strictdoc-project/stanislaw/release
Bump version to 0.15.2
2 parents db95979 + f74f4f5 commit 84cbd85

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

docs/strictdoc_04_release_notes.sdoc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,18 @@ STATEMENT: >>>
4545
This document maintains a record of all changes to StrictDoc since November 2023. It serves as a user-friendly version of the changelog, complementing the automatically generated, commit-by-commit changelog available as GitHub releases: `StrictDoc Releases <https://github.com/strictdoc-project/strictdoc/releases>`_.
4646
<<<
4747

48+
[[SECTION]]
49+
MID: 56d44b3868f04e13b00f1c3a6278c00e
50+
TITLE: 0.15.2 (2025-11-30)
51+
52+
[TEXT]
53+
MID: 079aad4ade4446fa8ffda1c7b6dc6072
54+
STATEMENT: >>>
55+
This is an intermediate release while we are waiting for the major layout fixes to be released in the upstream JS repository. Even without the complete release, this intermediate release should address several layout bugs that were reported by StrictDoc users.
56+
<<<
57+
58+
[[/SECTION]]
59+
4860
[[SECTION]]
4961
MID: bc41f8bb39b84edb87088bda5b462dbc
5062
TITLE: 0.15.1 (2025-11-28)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ dependencies = [
9595
"WebSockets",
9696

9797
# HTML2PDF dependencies
98-
"html2pdf4doc >= 0.0.22",
98+
"html2pdf4doc >= 0.0.23",
9999

100100
# Robot Framework dependencies
101101
"robotframework >= 4.0.0",

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.15.1"
3+
__version__ = "0.15.2"
44

55

66
environment = SDocRuntimeEnvironment(__file__)

strictdoc/export/html/html_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import Any, Dict, List, Optional, Set, Tuple
88

99
import orjson
10-
from html2pdf4doc.html2pdf4doc import PATH_TO_HTML2PDF4DOC_JS
10+
from html2pdf4doc import PATH_TO_HTML2PDF4DOC_JS
1111

1212
from strictdoc.backend.sdoc.models.document import SDocDocument
1313
from strictdoc.core.asset_manager import AssetDir

0 commit comments

Comments
 (0)