Skip to content

Commit 2136fe1

Browse files
committed
🚀 RELEASE: v0.4.2
1 parent baff8a0 commit 2136fe1

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 0.4.2 - 2020-08-28
4+
5+
🐛 FIX: nbfomat v4.5 cell IDs
6+
7+
Version 4.5 notebooks now contain `cell.id` (see [JEP 0062](https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#Case-loading-notebook-without-cell-id)).
8+
To deal with this, we always hash the notebooks as v4.4 (with ids removed), since IDs do not affect the execution output.
9+
Merging cached outputs into a notebook now also preserves the input notebook minor version, adding or removing `cell.id` where required.
10+
311
## 0.4.1 - 2020-08-28
412

513
⬆️ UPGRADE: nbclient v0.5

Diff for: jupyter_cache/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# NOTE: never import anything here, in order to maintain CLI speed
2-
__version__ = "0.4.2a1"
2+
__version__ = "0.4.2"
33

44

55
def get_cache(path, cache_cls=None):

0 commit comments

Comments
 (0)