Skip to content

Commit 729bba1

Browse files
committed
Publish 7.16.0
SHA256 hashes: nbconvert-7.16.0-py3-none-any.whl: ad3dc865ea6e2768d31b7eb6c7ab3be014927216a5ece3ef276748dd809054c7 nbconvert-7.16.0.tar.gz: 813e6553796362489ae572e39ba1bff978536192fb518e10826b0e8cadf03ec8
1 parent 87db94d commit 729bba1

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.0
6+
7+
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.15.0...87db94d2d31d77ad16eef2285bb764e97a6f3c11))
8+
9+
### Enhancements made
10+
11+
- Add a toggle to skip the svg encoding of images [#2106](https://github.com/jupyter/nbconvert/pull/2106) ([@gwincr11](https://github.com/gwincr11))
12+
13+
### Contributors to this release
14+
15+
([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2024-02-06&to=2024-02-07&type=c))
16+
17+
[@gwincr11](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Agwincr11+updated%3A2024-02-06..2024-02-07&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 7.15.0
622

723
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.14.2...dff141e8c8b392b89eed0adbf035f33810706750))
@@ -21,8 +37,6 @@
2137

2238
[@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)
2339

24-
<!-- <END NEW CHANGELOG ENTRY> -->
25-
2640
## 7.14.2
2741

2842
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.14.1...9d8a7a8771d0349e49328efb7fc2b8fb99c7cc1f))
@@ -1502,7 +1516,6 @@ raw template
15021516
{%- endblock in_prompt -%}
15031517
"""
15041518

1505-
15061519
exporter_attr = AttrExporter()
15071520
output_attr, _ = exporter_attr.from_notebook_node(nb)
15081521
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.15.0"
6+
__version__ = "7.16.0"
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)