summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoah <noah@656d521f-e311-0410-88e0-e7920216d269>2008-01-05 23:09:38 +0000
committernoah <noah@656d521f-e311-0410-88e0-e7920216d269>2008-01-05 23:09:38 +0000
commitfbe9b4129d2b4a48a1ebb68223c96266b7b2cf53 (patch)
treec2ccc46139915e0275134a93203b275bd3fd69dc
parente92da19ccec2c1517a75823b7eb09ae34c65f48a (diff)
downloadpexpect-fbe9b4129d2b4a48a1ebb68223c96266b7b2cf53.tar.gz
Getting ready for the next version 2.4 release.
git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@510 656d521f-e311-0410-88e0-e7920216d269
-rw-r--r--pexpect/Makefile2
-rw-r--r--pexpect/pexpect.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/pexpect/Makefile b/pexpect/Makefile
index ef0a158..2c730ef 100644
--- a/pexpect/Makefile
+++ b/pexpect/Makefile
@@ -1,7 +1,7 @@
# TODO This stupid Makefile is getty crappier and crappier. Is 'crappier' a word?
SHELL = /bin/sh
-VERSION=2.3
+VERSION=2.4
#DOCGENERATOR= happydoc
DOCGENERATOR=pydoc -w
# This is for GNU Make. This does not work on BSD Make.
diff --git a/pexpect/pexpect.py b/pexpect/pexpect.py
index 6d23d8e..b1fb989 100644
--- a/pexpect/pexpect.py
+++ b/pexpect/pexpect.py
@@ -84,8 +84,8 @@ except ImportError, e:
A critical module was not found. Probably this operating system does not
support it. Pexpect is intended for UNIX-like operating systems.""")
-__version__ = '2.3'
-__revision__ = '$Revision: 399 $'
+__version__ = '2.4'
+__revision__ = '$Revision$'
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'run', 'which',
'split_command_line', '__version__', '__revision__']