Updated CHANGELOG for 0.8.2

This commit is contained in:
Anthony Scopatz 2018-10-31 10:54:17 -04:00
parent a56a9e3875
commit dca4a47715
3 changed files with 20 additions and 40 deletions

View file

@ -4,6 +4,26 @@ Xonsh Change Log
.. current developments
v0.8.2
====================
**Changed:**
* Now there is only a single instance of ``string.Formatter()`` in the
code base, which is called ``xonsh.tools.FORMATTER``.
**Fixed:**
* f-strings (``f"{expr}"``) are now fully capable of executing xonsh expressions.
The one exception to this is that ``![cmd]`` and ``!(cmd)`` don't work because
the ``!`` character interferes with Python string formatting. If you need to
run subprocesses inside of f-strings, use ``$[cmd]`` and ``$(cmd)`` instead.
* Fixed occasional "no attribute 'settitle' error"
v0.8.1
====================

View file

@ -1,27 +0,0 @@
**Added:**
* <news item>
**Changed:**
* Now there is only a single instance of ``string.Formatter()`` in the
code base, which is called ``xonsh.tools.FORMATTER``.
**Deprecated:**
* <news item>
**Removed:**
* <news item>
**Fixed:**
* f-strings (``f"{expr}"``) are now fully capable of executing xonsh expressions.
The one exception to this is that ``![cmd]`` and ``!(cmd)`` don't work because
the ``!`` character interferes with Python string formatting. If you need to
run subprocesses inside of f-strings, use ``$[cmd]`` and ``$(cmd)`` instead.
**Security:**
* <news item>

View file

@ -1,13 +0,0 @@
**Added:** None
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:**
* Fixed occasional "no attribute 'settitle' error"
**Security:** None