diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e50ad7bc0..371da9558 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ==================== diff --git a/news/fstrenv.rst b/news/fstrenv.rst deleted file mode 100644 index df8248bbd..000000000 --- a/news/fstrenv.rst +++ /dev/null @@ -1,27 +0,0 @@ -**Added:** - -* - -**Changed:** - -* Now there is only a single instance of ``string.Formatter()`` in the - code base, which is called ``xonsh.tools.FORMATTER``. - -**Deprecated:** - -* - -**Removed:** - -* - -**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:** - -* diff --git a/news/shell-attr.rst b/news/shell-attr.rst deleted file mode 100644 index 2d50efea8..000000000 --- a/news/shell-attr.rst +++ /dev/null @@ -1,13 +0,0 @@ -**Added:** None - -**Changed:** None - -**Deprecated:** None - -**Removed:** None - -**Fixed:** - -* Fixed occasional "no attribute 'settitle' error" - -**Security:** None