mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Updated CHANGELOG for 0.8.7
This commit is contained in:
parent
d47b7fdc1f
commit
cfadb157f2
3 changed files with 27 additions and 58 deletions
|
@ -4,6 +4,33 @@ Xonsh Change Log
|
|||
|
||||
.. current developments
|
||||
|
||||
v0.8.7
|
||||
====================
|
||||
|
||||
**Added:**
|
||||
|
||||
* New xonsh syntax ``pf`` strings -- combining path strings with f-strings.
|
||||
|
||||
Usage:
|
||||
|
||||
.. code-block:: bash
|
||||
gil@bad_cat ~ $ repos = 'github.com'
|
||||
gil@bad_cat ~ $ pf"~/{repos}"
|
||||
PosixPath('/home/gil/github.com')
|
||||
gil@bad_cat ~ $ pf"{$HOME}"
|
||||
PosixPath('/home/gil')
|
||||
gil@bad_cat ~ $ pf"/home/${'US' + 'ER'}"
|
||||
PosixPath('/home/gil')
|
||||
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Set ``ls`` to ``predict_true`` in ``default_threadable_predictors``. This prevents ``ls`` on OSX
|
||||
from being flagged on OSX as unthreadable (incorrectly) because it relies on ``ncurses``.
|
||||
|
||||
|
||||
|
||||
|
||||
v0.8.6
|
||||
====================
|
||||
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Set ``ls`` to ``predict_true`` in ``default_threadable_predictors``. This prevents ``ls`` on OSX
|
||||
from being flagged on OSX as unthreadable (incorrectly) because it relies on ``ncurses``.
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,34 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* New xonsh syntax ``pf`` strings -- combining path strings with f-strings.
|
||||
|
||||
Usage:
|
||||
|
||||
.. code-block:: bash
|
||||
gil@bad_cat ~ $ repos = 'github.com'
|
||||
gil@bad_cat ~ $ pf"~/{repos}"
|
||||
PosixPath('/home/gil/github.com')
|
||||
gil@bad_cat ~ $ pf"{$HOME}"
|
||||
PosixPath('/home/gil')
|
||||
gil@bad_cat ~ $ pf"/home/${'US' + 'ER'}"
|
||||
PosixPath('/home/gil')
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
Loading…
Add table
Reference in a new issue