summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2014-06-25 18:09:31 -0700
committerThomas Kluyver <takowl@gmail.com>2014-06-25 18:09:31 -0700
commit671417beb41c21f772687c565196fdde444b053b (patch)
tree94bc61a4413dd40abf41c5a86f50cf3d378641e7
parent39c6abaf0741768be1e86f7c81ffd4db079e728d (diff)
downloadpexpect-671417beb41c21f772687c565196fdde444b053b.tar.gz
Bump version number to 3.33.3
-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 a5b7088..3dd5d3e 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.2'
+version = '3.3'
# The full version, including alpha/beta/rc tags.
-release = '3.2'
+release = '3.3'
# 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 30c6764..cace43b 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -88,7 +88,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.2'
+__version__ = '3.3'
__revision__ = ''
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']