8000 Bump version to 0.1.1, Update Changelog by chlafreniere · Pull Request #25 · vors/jupyter-powershell · GitHub
[go: up one dir, main page]

Skip to content

Bump version to 0.1.1, Update Changelog #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
-------------
## 0.1.1

* Fix a problem where variables wouldn't persist between cells (#19)

## 0.1.0

* Fix a problem with cells that contains multiply commands (#15)
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.0'
__version__ = '0.1.1'
2 changes: 1 addition & 1 deletion powershell_kernel/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from powershell_kernel import subprocess_repl, powershell_proxy
from powershell_kernel.util import get_powershell

__version__ = '0.1.0'
__version__ = '0.1.1'

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.0',
version = '0.1.1',
description = 'PowerShell language kernel for Jupyter',
author = 'Sergei Vorobev',
author_email = 'xvorsx@gmail.com',
Expand Down
0