Skip to content

Commit a69b8ee

Browse files
authored
Update to 0.1.4 (#40)
* Interactive Streaming via changing the run command * Addressed issue/comments as well as adding test for scenario * minor space change * Added few more unit tests - working on utilizing other unit test methods to test the PS Kernel * PowerShell Kernel Baseline Notebook Test * Move ipynb test file to tests folder * Update to 0.1.4 - Interactive Streaming Output * Take out version from language_info
1 parent 2f0aa0d commit a69b8ee

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
CHANGELOG
22
-------------
3+
## 0.1.4
4+
5+
* Interactive Streaming Output Support
6+
* Fix various problems where cells with streaming long outputs would hang indefinitely
7+
38
## 0.1.3
49

510
* Fix various problems where cells would capture output incorrectly

powershell_kernel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""A powershell kernel for Jupyter"""
2-
__version__ = '0.1.3'
2+
__version__ = '0.1.4'

powershell_kernel/kernel.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from powershell_kernel import subprocess_repl, powershell_proxy
1414
from powershell_kernel.util import get_powershell
1515

16-
__version__ = '0.1.3'
16+
__version__ = '0.1.4'
1717

1818
version_pat = re.compile(r'version (\d+(\.\d+)+)')
1919

@@ -33,7 +33,6 @@ def banner(self):
3333
return self._banner
3434

3535
language_info = {'name': 'powershell',
36-
'version': "0.1.3",
3736
'codemirror_mode': 'shell',
3837
'mimetype': 'text/x-sh',
3938
'file_extension': '.ps1'}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
setup(
33
name = 'powershell_kernel',
44
packages = ['powershell_kernel'],
5-
version = '0.1.3',
5+
version = '0.1.4',
66
description = 'PowerShell language kernel for Jupyter',
77
author = 'Sergei Vorobev',
88
author_email = '[email protected]',

0 commit comments

Comments
 (0)