summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2016-07-01 22:05:27 -0700
committerJeff Quast <contact@jeffquast.com>2016-07-01 22:05:27 -0700
commit48174aa610d6315265580dd338b15008e58caf82 (patch)
tree50607b0a733a12f8b6c98c359ff9829d2187616a
parent676e2007baeb96f9ee67a3c0e6d3f29662c847e6 (diff)
downloadpexpect-48174aa610d6315265580dd338b15008e58caf82.tar.gz
bump for version 4.3.0 w/changelog item
-rw-r--r--doc/conf.py4
-rw-r--r--doc/history.rst6
-rw-r--r--pexpect/__init__.py2
3 files changed, 9 insertions, 3 deletions
diff --git a/doc/conf.py b/doc/conf.py
index f3de534..b4002fc 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 = '4.2'
+version = '4.3'
# The full version, including alpha/beta/rc tags.
-release = '4.2.0'
+release = '4.3.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/doc/history.rst b/doc/history.rst
index 1b3b4ab..0d85f3a 100644
--- a/doc/history.rst
+++ b/doc/history.rst
@@ -4,6 +4,12 @@ History
Releases
--------
+Version 4.3
+```````````
+
+* Regression: Re-introduce capability for :meth:`read_nonblocking` in class
+ :class:`fdspawn` as previously supported in version 3.3 (:ghissue:`359`).
+
Version 4.2
```````````
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index 045fe36..4b5c233 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.2.0'
+__version__ = '4.3.0'
__revision__ = ''
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']