summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <thomas@kluyver.me.uk>2016-02-02 16:32:07 +0000
committerThomas Kluyver <thomas@kluyver.me.uk>2016-02-02 16:32:07 +0000
commit704430b94af3f8712f8fa393bb46f3c33592e6b0 (patch)
tree322ba112fd0bbd7733d7c9a072825304c53ce40c
parent34a41dd6a94334485be31825771285f348f4e756 (diff)
downloadptyprocess-704430b94af3f8712f8fa393bb46f3c33592e6b0.tar.gz
Version number -> 0.5.1
-rw-r--r--docs/conf.py2
-rw-r--r--ptyprocess/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 89c2cd3..da2296d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -57,7 +57,7 @@ copyright = u'2014, Thomas Kluyver'
# The short X.Y version.
version = '0.5'
# The full version, including alpha/beta/rc tags.
-release = version
+release = version + '.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/ptyprocess/__init__.py b/ptyprocess/__init__.py
index 868bdc3..c831e41 100644
--- a/ptyprocess/__init__.py
+++ b/ptyprocess/__init__.py
@@ -1,4 +1,4 @@
"""Run a subprocess in a pseudo terminal"""
from .ptyprocess import PtyProcess, PtyProcessUnicode, PtyProcessError
-__version__ = '0.5'
+__version__ = '0.5.1'