File tree 2 files changed +22
-4
lines changed
2 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<!-- <START NEW CHANGELOG ENTRY> -->
4
4
5
+ ## 7.15.0
6
+
7
+ ([ Full Changelog] ( https://github.com/jupyter/nbconvert/compare/v7.14.2...dff141e8c8b392b89eed0adbf035f33810706750 ) )
8
+
9
+ ### Enhancements made
10
+
11
+ - Support configureable width and height of reveal presentations [ #2104 ] ( https://github.com/jupyter/nbconvert/pull/2104 ) ([ @franzhaas ] ( https://github.com/franzhaas ) )
12
+
13
+ ### Maintenance and upkeep improvements
14
+
15
+ - chore: update pre-commit hooks [ #2105 ] ( https://github.com/jupyter/nbconvert/pull/2105 ) ([ @pre-commit-ci ] ( https://github.com/pre-commit-ci ) )
16
+ - handle xhtml void elements in mermaid diagrams [ #2103 ] ( https://github.com/jupyter/nbconvert/pull/2103 ) ([ @bollwyvl ] ( https://github.com/bollwyvl ) )
17
+
18
+ ### Contributors to this release
19
+
20
+ ([ GitHub contributors page for this release] ( https://github.com/jupyter/nbconvert/graphs/contributors?from=2024-01-16&to=2024-02-06&type=c ) )
21
+
22
+ [ @bollwyvl ] ( https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Abollwyvl+updated%3A2024-01-16..2024-02-06&type=Issues ) | [ @franzhaas ] ( https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Afranzhaas+updated%3A2024-01-16..2024-02-06&type=Issues ) | [ @pre-commit-ci ] ( https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Apre-commit-ci+updated%3A2024-01-16..2024-02-06&type=Issues )
23
+
24
+ <!-- <END NEW CHANGELOG ENTRY> -->
25
+
5
26
## 7.14.2
6
27
7
28
([ Full Changelog] ( https://github.com/jupyter/nbconvert/compare/v7.14.1...9d8a7a8771d0349e49328efb7fc2b8fb99c7cc1f ) )
16
37
17
38
[ @bollwyvl ] ( https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Abollwyvl+updated%3A2024-01-11..2024-01-16&type=Issues )
18
39
19
- <!-- <END NEW CHANGELOG ENTRY> -->
20
-
21
40
## 7.14.1
22
41
23
42
([ Full Changelog] ( https://github.com/jupyter/nbconvert/compare/v7.14.0...dedd81acdde7c96204d01f1392af896d2e6dbe1b ) )
@@ -1483,7 +1502,6 @@ raw template
1483
1502
{%- endblock in_prompt -%}
1484
1503
"""
1485
1504
1486
-
1487
1505
exporter_attr = AttrExporter()
1488
1506
output_attr, _ = exporter_attr.from_notebook_node(nb)
1489
1507
assert " raw template" in output_attr
Original file line number Diff line number Diff line change 3
3
from typing import List
4
4
5
5
# Version string must appear intact for versioning
6
- __version__ = "7.14.2 "
6
+ __version__ = "7.15.0 "
7
7
8
8
# Build up version_info tuple for backwards compatibility
9
9
pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"
You can’t perform that action at this time.
0 commit comments