mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Updated CHANGELOG for 0.6.6
This commit is contained in:
parent
b797b6c46a
commit
d2d7819135
6 changed files with 40 additions and 87 deletions
|
@ -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
|
||||
====================
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
**Fixed:**
|
||||
|
||||
* issue 2313
|
||||
|
||||
**Changed:**
|
||||
|
||||
* built_ins.py, corrected a typo.
|
||||
|
||||
**Added:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Security:** None
|
||||
|
|
@ -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
|
||||
|
14
news/hgi.rst
14
news/hgi.rst
|
@ -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
|
13
news/pc.rst
13
news/pc.rst
|
@ -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
|
Loading…
Add table
Reference in a new issue