Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.3

* Fix various problems where cells would capture output incorrectly
* Fix a problem where comments at the end of a cell could cause the kernel to hang indefinitely

## 0.1.2

* Fix a problem where kernel hangs when asking for user input (#23)
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.2'
__version__ = '0.1.3'
2 changes: 1 addition & 1 deletion 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.2'
__version__ = '0.1.3'

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

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.2',
version = '0.1.3',
description = 'PowerShell language kernel for Jupyter',
author = 'Sergei Vorobev',
author_email = '[email protected]',
Expand Down