Updated CHANGELOG for 0.6.6

This commit is contained in:
Anthony Scopatz 2018-06-06 13:12:10 -04:00
parent b797b6c46a
commit d2d7819135
6 changed files with 40 additions and 87 deletions

View file

@ -4,6 +4,46 @@ Xonsh Change Log
.. current developments
v0.6.6
====================
**Added:**
* A multipurpose add method to EnvPath. For example:
.. code-block:: xonshcon
$ $PATH
EnvPath(
['/usr/bin', '/usr/local/bin', '/bin']
)
$ $PATH.add('~/.local/bin', front=True); $PATH
EnvPath(
['/home/user/.local/bin', '/usr/bin', '/usr/local/bin', '/bin']
)
$ $PATH.add('/usr/bin', front=True, replace=True); $PATH
EnvPath(
['/usr/bin', '/home/user/.local/bin', '/usr/local/bin', '/bin']
)
* Added ``pygments-cache`` project in order to reduce startup time.
**Changed:**
* built_ins.py, corrected a typo.
* test/test_news.py
It now uses regex to verify the format of rst files
* Mercurial (``hg``) will no longer run in a threadable subprocess when
it is run in interactive mode.
**Fixed:**
* issue 2313
v0.6.5
====================

View file

@ -1,29 +0,0 @@
**Added:**
* A multipurpose add method to EnvPath. For example:
.. code-block:: xonshcon
$ $PATH
EnvPath(
['/usr/bin', '/usr/local/bin', '/bin']
)
$ $PATH.add('~/.local/bin', front=True); $PATH
EnvPath(
['/home/user/.local/bin', '/usr/bin', '/usr/local/bin', '/bin']
)
$ $PATH.add('/usr/bin', front=True, replace=True); $PATH
EnvPath(
['/usr/bin', '/home/user/.local/bin', '/usr/local/bin', '/bin']
)
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:** None
**Security:** None

View file

@ -1,16 +0,0 @@
**Fixed:**
* issue 2313
**Changed:**
* built_ins.py, corrected a typo.
**Added:** None
**Deprecated:** None
**Removed:** None
**Security:** None

View file

@ -1,15 +0,0 @@
**Added:** None
**Changed:**
* test/test_news.py
It now uses regex to verify the format of rst files
**Deprecated:** None
**Removed:** None
**Fixed:** None
**Security:** None

View file

@ -1,14 +0,0 @@
**Added:** None
**Changed:**
* Mercurial (``hg``) will no longer run in a threadable subprocess when
it is run in interactive mode.
**Deprecated:** None
**Removed:** None
**Fixed:** None
**Security:** None

View file

@ -1,13 +0,0 @@
**Added:**
* Added ``pygments-cache`` project in order to reduce startup time.
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:** None
**Security:** None