Skip to content

Commit 61a38d7

Browse files
committed
Publish 7.14.1
SHA256 hashes: nbconvert-7.14.1-py3-none-any.whl: aa83e3dd27ea38d0c1d908e3ce9518d15fa908dd30521b6d5040bd23f33fffb0 nbconvert-7.14.1.tar.gz: 20cba10e0448dc76b3bebfe1adf923663e3b98338daf77b97b42511ef5a88618
1 parent dedd81a commit 61a38d7

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

CHANGELOG.md

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

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

5+
## 7.14.1
6+
7+
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.14.0...dedd81acdde7c96204d01f1392af896d2e6dbe1b))
8+
9+
### Bugs fixed
10+
11+
- Fix broken image scaling in case a custom width or height is provided for the image [#2094](https://github.com/jupyter/nbconvert/pull/2094) ([@AndSte01](https://github.com/AndSte01))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Allow pre-fetch of css files without attempting download [#2095](https://github.com/jupyter/nbconvert/pull/2095) ([@AlexanderRichert-NOAA](https://github.com/AlexanderRichert-NOAA))
16+
- Bump the actions group with 1 update [#2091](https://github.com/jupyter/nbconvert/pull/2091) ([@dependabot](https://github.com/dependabot))
17+
18+
### Contributors to this release
19+
20+
([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2024-01-01&to=2024-01-11&type=c))
21+
22+
[@AlexanderRichert-NOAA](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3AAlexanderRichert-NOAA+updated%3A2024-01-01..2024-01-11&type=Issues) | [@AndSte01](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3AAndSte01+updated%3A2024-01-01..2024-01-11&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Adependabot+updated%3A2024-01-01..2024-01-11&type=Issues)
23+
24+
<!-- <END NEW CHANGELOG ENTRY> -->
25+
526
## 7.14.0
627

728
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.13.1...0f17b3069d320565af12a4a12da7d9ce3c18dac4))
@@ -22,8 +43,6 @@
2243

2344
[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2023-12-21..2024-01-01&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Apre-commit-ci+updated%3A2023-12-21..2024-01-01&type=Issues) | [@ryan-williams](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Aryan-williams+updated%3A2023-12-21..2024-01-01&type=Issues)
2445

25-
<!-- <END NEW CHANGELOG ENTRY> -->
26-
2746
## 7.13.1
2847

2948
([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.13.0...15b2bc2e215bc3d0ab37508eeeb624ede5da0d36))
@@ -1450,7 +1469,6 @@ raw template
14501469
{%- endblock in_prompt -%}
14511470
"""
14521471

1453-
14541472
exporter_attr = AttrExporter()
14551473
output_attr, _ = exporter_attr.from_notebook_node(nb)
14561474
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.14.0"
6+
__version__ = "7.14.1"
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)