summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2014-04-14 18:31:30 -0700
committerThomas Kluyver <takowl@gmail.com>2014-04-14 18:31:30 -0700
commit92debe1aa6e78cc3ee0ecd97eee1d462e313dc1a (patch)
treee1832e0759fed39f71aca93fe5de087f1bac678a
parenta39f9b4773cf88e7a9eadea84de9a653c72a1553 (diff)
downloadpexpect-92debe1aa6e78cc3ee0ecd97eee1d462e313dc1a.tar.gz
Bump version number for 3.2
-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 a03b7aa..a5b7088 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 = '3.1'
+version = '3.2'
# The full version, including alpha/beta/rc tags.
-release = '3.1'
+release = '3.2'
# 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 139a6a9..942d19f 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -87,7 +87,7 @@ except ImportError: # pragma: no cover
A critical module was not found. Probably this operating system does not
support it. Pexpect is intended for UNIX-like operating systems.''')
-__version__ = '3.1'
+__version__ = '3.2'
__revision__ = ''
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']