Skip to content

Commit

Permalink
Update to 0.1.4 (#40)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
VasuBhog authored Oct 7, 2020
1 parent 2f0aa0d commit a69b8ee
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
CHANGELOG
-------------
## 0.1.4

* Interactive Streaming Output Support
* Fix various problems where cells with streaming long outputs would hang indefinitely

## 0.1.3

* Fix various problems where cells would capture output incorrectly
Expand Down
2 changes: 1 addition & 1 deletion powershell_kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""A powershell kernel for Jupyter"""
__version__ = '0.1.3'
__version__ = '0.1.4'
3 changes: 1 addition & 2 deletions powershell_kernel/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from powershell_kernel import subprocess_repl, powershell_proxy
from powershell_kernel.util import get_powershell

__version__ = '0.1.3'
__version__ = '0.1.4'

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

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

language_info = {'name': 'powershell',
'version': "0.1.3",
'codemirror_mode': 'shell',
'mimetype': 'text/x-sh',
'file_extension': '.ps1'}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setup(
name = 'powershell_kernel',
packages = ['powershell_kernel'],
version = '0.1.3',
version = '0.1.4',
description = 'PowerShell language kernel for Jupyter',
author = 'Sergei Vorobev',
author_email = '[email protected]',
Expand Down

0 comments on commit a69b8ee

Please sign in to comment.