File tree 2 files changed +17
-3
lines changed
2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
17
## 0.3.0 - 2020-08-05
4
18
5
- ### Improved
19
+ ### Improved 👌
6
20
7
21
- Moved execution functionality from [ nbconvert] ( https://github.com/jupyter/nbconvert ) to [ nbclient] ( https://github.com/jupyter/nbclient )
8
22
- Fixed UTF8 encoding (for Windows OS), thanks to @phaustin
9
23
10
- ### Fixed
24
+ ### Fixed 🐛
11
25
12
26
- Moved testing from Travis CI to GitHub Actions (and added tests for Windows OS)
Original file line number Diff line number Diff line change 1
1
# NOTE: never import anything here, in order to maintain CLI speed
2
- __version__ = "0.3 .0"
2
+ __version__ = "0.4 .0"
3
3
4
4
5
5
def get_cache (path , cache_cls = None ):
You can’t perform that action at this time.
0 commit comments