summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2015-10-05 12:01:46 +0100
committerThomas Kluyver <takowl@gmail.com>2015-10-05 12:01:46 +0100
commit25d95f83570ba3ee47dd75c8f4d1c82d7bfd71fe (patch)
treea008caeed084f54fb02c21f64641342399a0c00e
parent78a207a845d9d55e477bc84c526791e2768e191e (diff)
downloadpexpect-git-25d95f83570ba3ee47dd75c8f4d1c82d7bfd71fe.tar.gz
Version number -> 4.1.dev
-rw-r--r--doc/conf.py4
-rw-r--r--pexpect/__init__.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 0fd3771..1e65318 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -52,9 +52,9 @@ copyright = u'2013, Noah Spurrier and contributors'
# built documents.
#
# The short X.Y version.
-version = '4.0'
+version = '4.1'
# The full version, including alpha/beta/rc tags.
-release = '4.0'
+release = '4.1.dev'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index 7441d7e..113ca22 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -75,7 +75,7 @@ if sys.platform != 'win32':
from .pty_spawn import spawn, spawnu
from .run import run, runu
-__version__ = '4.0'
+__version__ = '4.1.dev'
__revision__ = ''
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']