From 61ce66a0d6a9dbb8614b8d3d7192747c0f5be971 Mon Sep 17 00:00:00 2001 From: dluyer <53582923+dluyer@users.noreply.github.com> Date: Thu, 16 Jan 2020 13:56:13 -0800 Subject: Start release notes for 4.8 --- doc/history.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/doc/history.rst b/doc/history.rst index b3b0ff1..93bc6b4 100644 --- a/doc/history.rst +++ b/doc/history.rst @@ -4,6 +4,20 @@ 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`). + Version 4.7 ``````````` -- cgit v1.2.1 From 48a156393ef1eb4bd3e56e0993114cb5aa7c1a98 Mon Sep 17 00:00:00 2001 From: dluyer <53582923+dluyer@users.noreply.github.com> Date: Thu, 16 Jan 2020 13:59:53 -0800 Subject: Update history.rst --- doc/history.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/history.rst b/doc/history.rst index 93bc6b4..3f05909 100644 --- a/doc/history.rst +++ b/doc/history.rst @@ -10,13 +10,13 @@ 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 +* 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`). + ``str_last_chars`` rather than always 100 (:ghpull:`598`). Version 4.7 ``````````` -- cgit v1.2.1 From 47bcd7bd56f3c7c8c409604ad25d462b95ea58f3 Mon Sep 17 00:00:00 2001 From: dluyer <53582923+dluyer@users.noreply.github.com> Date: Thu, 16 Jan 2020 14:06:49 -0800 Subject: Update version # for new release --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1 From a08ed4747c7febc8df3684b615f9d2b01359a0f1 Mon Sep 17 00:00:00 2001 From: dluyer <53582923+dluyer@users.noreply.github.com> Date: Thu, 16 Jan 2020 14:08:52 -0800 Subject: Update version # for new release --- pexpect/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__'] -- cgit v1.2.1 From c9d023e343c2e5c814834c44d52c96668517da4a Mon Sep 17 00:00:00 2001 From: dluyer <53582923+dluyer@users.noreply.github.com> Date: Thu, 16 Jan 2020 14:21:52 -0800 Subject: Update history.rst --- doc/history.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/history.rst b/doc/history.rst index 3f05909..2a4aeb0 100644 --- a/doc/history.rst +++ b/doc/history.rst @@ -17,6 +17,8 @@ Version 4.8 * 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 ``````````` -- cgit v1.2.1