summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-10-27 10:34:24 -0700
committerThomas Kluyver <takowl@gmail.com>2013-10-27 10:34:24 -0700
commitc7f750cd676f0583dbba2e8f64f8f5b3c423e088 (patch)
tree1d0a2bde037658eb6abf6dbcd22dc2d2a0383cf5
parentaf003bc2b6ebb83902439a2ab172f08603cdfed2 (diff)
downloadpexpect-git-c7f750cd676f0583dbba2e8f64f8f5b3c423e088.tar.gz
Update version number for 3.0rc13.0rc1
-rw-r--r--doc/conf.py2
-rw-r--r--pexpect/__init__.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/conf.py b/doc/conf.py
index e7dbdcc..3784057 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -50,7 +50,7 @@ copyright = u'2013, Noah Spurrier and contributors'
# The short X.Y version.
version = '3.0'
# The full version, including alpha/beta/rc tags.
-release = '3.0b2'
+release = '3.0rc1'
# 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 ac665dd..ba57b11 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -87,8 +87,8 @@ 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.0b2'
-__revision__ = '1'
+__version__ = '3.0rc1'
+__revision__ = None
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']