Updated CHANGELOG for 0.7.7

This commit is contained in:
Anthony Scopatz 2018-08-30 07:37:47 -05:00
parent 1de73469c1
commit 5f92e80b22
7 changed files with 34 additions and 89 deletions

View file

@ -4,6 +4,40 @@ Xonsh Change Log
.. current developments
v0.7.7
====================
**Added:**
* A xontrib which adds support for autojump to xonsh
* Added new env-var ``XONSH_HISTORY_MATCH_ANYWHERE``. If set to ``True`` then
up-arrow history matching will match existing history entries with the search
term located anywhere, not just at the beginning of the line. Default value is
``False``
**Changed:**
* Improved iteration over virtual environments in Vox.__iter__
**Fixed:**
* Fix for ``Enter`` not returning from Control-R search buffer
* Fixed automatic wrapping of many subprocesses that spanned multiple lines via
line continuation characters with logical operators separating the commands.
For example, the following now works:
.. code-block:: sh
echo 'a' \
and echo 'b'
* Environment swapping would not properly reraise errors due to weird
Python name binding issue.
v0.7.6
====================

View file

@ -1,13 +0,0 @@
**Added:**
* A xontrib which adds support for autojump to xonsh
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:** None
**Security:** None

View file

@ -1,13 +0,0 @@
**Added:** None
**Changed:**
* Improved iteration over virtual environments in Vox.__iter__
**Deprecated:** None
**Removed:** None
**Fixed:** None
**Security:** None

View file

@ -1,13 +0,0 @@
**Added:** None
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:**
* Fix for ``Enter`` not returning from Control-R search buffer
**Security:** None

View file

@ -1,16 +0,0 @@
**Added:**
* Added new env-var ``XONSH_HISTORY_MATCH_ANYWHERE``. If set to ``True`` then
up-arrow history matching will match existing history entries with the search
term located anywhere, not just at the beginning of the line. Default value is
``False``
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:** None
**Security:** None

View file

@ -1,20 +0,0 @@
**Added:** None
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:**
* Fixed automatic wrapping of many subprocesses that spanned multiple lines via
line continuation characters with logical operators separating the commands.
For example, the following now works:
.. code-block:: sh
echo 'a' \
and echo 'b'
**Security:** None

View file

@ -1,14 +0,0 @@
**Added:** None
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:**
* Environment swapping would not properly reraise errors due to weird
Python name binding issue.
**Security:** None