summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <thomas@kluyver.me.uk>2018-02-10 12:34:56 +0000
committerThomas Kluyver <thomas@kluyver.me.uk>2018-02-10 12:34:56 +0000
commit8944656b1c1b47f76cdb3d209fa1bf27ffb0c979 (patch)
tree2a7167aaa83caea9579f0193e8749cbf8ce67cb6
parent424d06e508e9be479e1a004d6ecbd98af8cc8af5 (diff)
downloadpexpect-8944656b1c1b47f76cdb3d209fa1bf27ffb0c979.tar.gz
Version number -> 4.4.0
-rw-r--r--doc/conf.py2
-rw-r--r--pexpect/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 6fc815f..05a2948 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -52,7 +52,7 @@ copyright = u'2013, Noah Spurrier and contributors'
# built documents.
#
# The short X.Y version.
-version = '4.3.1'
+version = '4.4'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index 40bcc97..458d3ad 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.3.1'
+__version__ = '4.4.0'
__revision__ = ''
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']