diff options
-rw-r--r-- | bash_kernel.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bash_kernel.py b/bash_kernel.py index 14720ff..00cc795 100644 --- a/bash_kernel.py +++ b/bash_kernel.py @@ -5,7 +5,7 @@ import signal from subprocess import check_output import re -__version__ = '0.1' +__version__ = '0.2' version_pat = re.compile(r'version (\d+(\.\d+)+)') @@ -17,7 +17,7 @@ if svem_flag in sys.argv: sys.argv.remove(svem_flag) setup(name='bash_kernel', - version='0.1', + version='0.2', description='A bash kernel for IPython', long_description=readme, author='Thomas Kluyver', |