Skip to content

Commit 5b83602

Browse files
committed
Publish 7.16.2
SHA256 hashes: nbconvert-7.16.2-py3-none-any.whl: 0c01c23981a8de0220255706822c40b751438e32467d6a686e26be08ba784382 nbconvert-7.16.2.tar.gz: 8310edd41e1c43947e4ecf16614c61469ebc024898eb808cce0999860fc9fb16
1 parent 8dac97a commit 5b83602

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

CHANGELOG.md

+16-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 7.16.2
6+
7+
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.16.1...8dac97afa73d59e6afcad04ca076355576b6eb51))
8+
9+
### Bugs fixed
10+
11+
- \[HTMLExporter\] Initialize resources before widget filtering [#2118](https://github.com/jupyter/nbconvert/pull/2118) ([@yuvipanda](https://github.com/yuvipanda))
12+
13+
### Contributors to this release
14+
15+
([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2024-02-19&to=2024-03-04&type=c))
16+
17+
[@yuvipanda](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ayuvipanda+updated%3A2024-02-19..2024-03-04&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 7.16.1
622

723
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.16.0...443b30703078e6f7d5b1044f25fb77e219136aac))
@@ -22,8 +38,6 @@
2238

2339
[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2024-02-07..2024-02-19&type=Issues) | [@ivanov](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Aivanov+updated%3A2024-02-07..2024-02-19&type=Issues)
2440

25-
<!-- <END NEW CHANGELOG ENTRY> -->
26-
2741
## 7.16.0
2842

2943
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.15.0...87db94d2d31d77ad16eef2285bb764e97a6f3c11))
@@ -1536,7 +1550,6 @@ raw template
15361550
{%- endblock in_prompt -%}
15371551
"""
15381552

1539-
15401553
exporter_attr = AttrExporter()
15411554
output_attr, _ = exporter_attr.from_notebook_node(nb)
15421555
assert "raw template" in output_attr

nbconvert/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from typing import List
44

55
# Version string must appear intact for versioning
6-
__version__ = "7.16.1"
6+
__version__ = "7.16.2"
77

88
# Build up version_info tuple for backwards compatibility
99
pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"

0 commit comments

Comments
 (0)