Skip to content

Commit b9a9e07

Browse files
authored
🚀 RELEASE: v0.4.0 (#58)
1 parent 1ef9102 commit b9a9e07

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

Diff for: CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
# CHANGELOG
22

3+
## 0.4.0 - 2020-08-19
4+
5+
- 👌 IMPROVE: Add `allow_errors` execution option to `JupyterExecutorBasic.run_and_cache`
6+
7+
This can also be set in the notebook metadata: `nb.metadata.execution.allow_errors`
8+
- 👌 IMPROVE: Add `run_in_temp` execution option to `JupyterExecutorBasic.run_and_cache`
9+
- ⬇️ DOWNGRADE: Relax pinning of nbclient
10+
11+
Since there are reports of issues with version 0.3,
12+
see: [jupyter/nbclient#58](https://github.com/jupyter/nbclient/issues/58)
13+
- ♻️ REFACTOR: Extract single notebook execution into separate function
14+
15+
Useful for upstream use.
16+
317
## 0.3.0 - 2020-08-05
418

5-
### Improved
19+
### Improved 👌
620

721
- Moved execution functionality from [nbconvert](https://github.com/jupyter/nbconvert) to [nbclient](https://github.com/jupyter/nbclient)
822
- Fixed UTF8 encoding (for Windows OS), thanks to @phaustin
923

10-
### Fixed
24+
### Fixed 🐛
1125

1226
- Moved testing from Travis CI to GitHub Actions (and added tests for Windows OS)

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.3.0"
2+
__version__ = "0.4.0"
33

44

55
def get_cache(path, cache_cls=None):

0 commit comments

Comments
 (0)