summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <thomas@kluyver.me.uk>2020-01-17 17:08:15 +0000
committerGitHub <noreply@github.com>2020-01-17 17:08:15 +0000
commit5eed1a31a2853a09b7367c59fbd1a4a0b53341df (patch)
tree5adbcc9daeed7c68d7941471cd07852dc9f316fb
parentfad909459019d3d38726a2503b7fb49e1cf80de3 (diff)
parentc9d023e343c2e5c814834c44d52c96668517da4a (diff)
downloadpexpect-git-5eed1a31a2853a09b7367c59fbd1a4a0b53341df.tar.gz
Merge pull request #616 from pexpect/dluyer-patch-14.8.0
Release notes and version number update for 4.8.0
-rw-r--r--doc/conf.py2
-rw-r--r--doc/history.rst16
-rw-r--r--pexpect/__init__.py2
3 files changed, 18 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 166300e..755b0a4 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -52,7 +52,7 @@ copyright = u'2013, Noah Spurrier and contributors'
# built documents.
#
# The short X.Y version.
-version = '4.7'
+version = '4.8'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/doc/history.rst b/doc/history.rst
index b3b0ff1..2a4aeb0 100644
--- a/doc/history.rst
+++ b/doc/history.rst
@@ -4,6 +4,22 @@ History
Releases
--------
+Version 4.8
+```````````
+
+* Returned behavior of searchwindowsize to that in 4.3 and earlier (searches
+ are only done within the search window) (:ghpull:`579`).
+* Fixed a bug truncating ``before`` attribute after a timeout (:ghpull:`579`).
+* Fixed a bug where a search could be less than ``searchwindowsize`` if it
+ was increased between calls (:ghpull:`579`).
+* Minor test cleanups to improve portability (:ghpull:`580`) (:ghpull:`581`)
+ (:ghpull:`582`) (:ghpull:`583`) (:ghpull:`584`) (:ghpull:`585`).
+* Disable chaining of timeout and EOF exceptions (:gphull:`606`).
+* Allow traceback included snippet length to be configured via
+ ``str_last_chars`` rather than always 100 (:ghpull:`598`).
+* Python 3 warning added to interact.py (:ghpull:`537`).
+* Several doc updates.
+
Version 4.7
```````````
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index cf7a70d..7e30453 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.7.0'
+__version__ = '4.8.0'
__revision__ = ''
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']