mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
version bump to 0.5.8
This commit is contained in:
parent
e7a9bcf3b7
commit
12c187fdb7
9 changed files with 30 additions and 91 deletions
|
@ -1,4 +1,4 @@
|
|||
version: 0.5.7.{build}
|
||||
version: 0.5.8.{build}
|
||||
os: Windows Server 2012 R2
|
||||
environment:
|
||||
|
||||
|
|
|
@ -4,6 +4,34 @@ Xonsh Change Log
|
|||
|
||||
.. current developments
|
||||
|
||||
v0.5.8
|
||||
====================
|
||||
|
||||
**Changed:**
|
||||
|
||||
* The ``xonsh.platform.os_environ`` wrapper is now case-insesitive and
|
||||
case-preserving on Windows.
|
||||
* The private ``_TeeStd`` class will no longer attempt to write to a
|
||||
standard buffer after the tee has been 'closed' and the standard
|
||||
buffer returned to the system.
|
||||
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed a bug on py34 where os.scandir was used by accident.
|
||||
* Line continuations (``\\``) is subproc mode will no longer consume the
|
||||
surrounding whitespace.
|
||||
* Fixed a bug if foreign_shell name was not written in lower case in
|
||||
the static configuration file ``config.json``
|
||||
* Fixed a regression on Windows where caused ``which`` reported that the
|
||||
``PATH`` envrionment variable could not be found.
|
||||
* Fixed issue with foregrounding jobs that were started in the background.
|
||||
* Fixed that ``Ctrl-C`` crashes xonsh after running an invalid command.
|
||||
* Fixed an potential ``ProcessLookupError`` issue, see #2288.
|
||||
|
||||
|
||||
|
||||
|
||||
v0.5.7
|
||||
====================
|
||||
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Line continuations (``\\``) is subproc mode will no longer consume the
|
||||
surrounding whitespace.
|
||||
|
||||
**Security:** None
|
|
@ -1,17 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:**
|
||||
|
||||
* The private ``_TeeStd`` class will no longer attempt to write to a
|
||||
standard buffer after the tee has been 'closed' and the standard
|
||||
buffer returned to the system.
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed issue with foregrounding jobs that were started in the background.
|
||||
|
||||
**Security:** None
|
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed a bug if foreign_shell name was not written in lower case in
|
||||
the static configuration file ``config.json``
|
||||
|
||||
**Security:** None
|
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed that ``Ctrl-C`` crashes xonsh after running an invalid command.
|
||||
* Fixed an potential ``ProcessLookupError`` issue, see #2288.
|
||||
|
||||
**Security:** None
|
|
@ -1,17 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:**
|
||||
|
||||
* The ``xonsh.platform.os_environ`` wrapper is now case-insesitive and
|
||||
case-preserving on Windows.
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed a regression on Windows where caused ``which`` reported that the
|
||||
``PATH`` envrionment variable could not be found.
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed a bug on py34 where os.scandir was used by accident.
|
||||
|
||||
**Security:** None
|
|
@ -1,4 +1,4 @@
|
|||
__version__ = '0.5.7'
|
||||
__version__ = '0.5.8'
|
||||
|
||||
|
||||
# amalgamate exclude jupyter_kernel parser_table parser_test_table pyghooks
|
||||
|
|
Loading…
Add table
Reference in a new issue