File tree 4 files changed +8
-3
lines changed 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
-------------
3
+ ## 0.1.3
4
+
5
+ * Fix various problems where cells would capture output incorrectly
6
+ * Fix a problem where comments at the end of a cell could cause the kernel to hang indefinitely
7
+
3
8
## 0.1.2
4
9
5
10
* Fix a problem where kernel hangs when asking for user input (#23 )
Original file line number Diff line number Diff line change 1
1
"""A powershell kernel for Jupyter"""
2
- __version__ = '0.1.2 '
2
+ __version__ = '0.1.3 '
Original file line number Diff line number Diff line change 13
13
from powershell_kernel import subprocess_repl , powershell_proxy
14
14
from powershell_kernel .util import get_powershell
15
15
16
- __version__ = '0.1.2 '
16
+ __version__ = '0.1.3 '
17
17
18
18
version_pat = re .compile (r'version (\d+(\.\d+)+)' )
19
19
Original file line number Diff line number Diff line change 2
2
setup (
3
3
name = 'powershell_kernel' ,
4
4
packages = ['powershell_kernel' ],
5
- version = '0.1.2 ' ,
5
+ version = '0.1.3 ' ,
6
6
description = 'PowerShell language kernel for Jupyter' ,
7
7
author = 'Sergei Vorobev' ,
8
8
author_email = '[email protected] ' ,
You can’t perform that action at this time.
0 commit comments