From 19b683f00020c5cb1e147508987499e8fc604273 Mon Sep 17 00:00:00 2001 From: Anthony Scopatz Date: Mon, 11 Mar 2019 14:43:30 -0400 Subject: [PATCH] Updated CHANGELOG for 0.8.12 --- CHANGELOG.rst | 42 +++++++++++++++++++++++++++ news/3036-change-xontrib-autojump.rst | 23 --------------- news/bad-colors.rst | 38 ------------------------ 3 files changed, 42 insertions(+), 61 deletions(-) delete mode 100644 news/3036-change-xontrib-autojump.rst delete mode 100644 news/bad-colors.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d8ee3231f..9d1235f33 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,48 @@ Xonsh Change Log .. current developments +v0.8.12 +==================== + +**Added:** + +* Support for more ANSI escape sequece modifers allowed in color names. + The current modifiers now allowed are: BOLD, FAINT, ITALIC, UNDERLINE, + SLOWBLINK, FASTBLINK, INVERT, CONCEAL, and STRIKETHROUGH. +* New ``ansi_tools.ansi_color_name_to_escape_code()`` function for + converting a color name to an ANSI escape code. +* ``color_tools.RE_XONSH_COLOR`` is a regular expression for matching + xonsh color names. +* ``color_tools.iscolor()`` is a simple function for testing whether a + string is a valid color name or not. +* The ``tools.all_permutations()`` function yeilds all possible permutations + of an iterable, including removals. + +**Changed:** + +* change url of xontrib-autojump +* ANSI color styles may now defined simply by their plain and intense colors. +* ``SET_FOREGROUND_3INTS_`` renamed to ``SET_FOREGROUND_FAINT_``, + ``SET_BACKGROUND_3INTS_`` renamed to ``SET_BACKGROUND_FAINT_``, + ``SET_FOREGROUND_SHORT_`` renamed to ``SET_FOREGROUND_SLOWBLINK_``, and + ``SET_BACKGROUND_SHORT_`` renamed to ``SET_BACKGROUND_SLOWBLINK_``. + +**Removed:** + +* ``ansi_tools.ANSI_REVERSE_COLOR_NAME_TRANSLATIONS`` removed, as it is + no longer needed. + +**Fixed:** + +* Fixed issues where ``$LS_COLORS`` could not convert valid ANSI colors. + +**Authors:** + +* Anthony Scopatz +* virus + + + v0.8.11 ==================== diff --git a/news/3036-change-xontrib-autojump.rst b/news/3036-change-xontrib-autojump.rst deleted file mode 100644 index 34137b1ce..000000000 --- a/news/3036-change-xontrib-autojump.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* change url of xontrib-autojump - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/bad-colors.rst b/news/bad-colors.rst deleted file mode 100644 index 188bf8f6f..000000000 --- a/news/bad-colors.rst +++ /dev/null @@ -1,38 +0,0 @@ -**Added:** - -* Support for more ANSI escape sequece modifers allowed in color names. - The current modifiers now allowed are: BOLD, FAINT, ITALIC, UNDERLINE, - SLOWBLINK, FASTBLINK, INVERT, CONCEAL, and STRIKETHROUGH. -* New ``ansi_tools.ansi_color_name_to_escape_code()`` function for - converting a color name to an ANSI escape code. -* ``color_tools.RE_XONSH_COLOR`` is a regular expression for matching - xonsh color names. -* ``color_tools.iscolor()`` is a simple function for testing whether a - string is a valid color name or not. -* The ``tools.all_permutations()`` function yeilds all possible permutations - of an iterable, including removals. - -**Changed:** - -* ANSI color styles may now defined simply by their plain and intense colors. -* ``SET_FOREGROUND_3INTS_`` renamed to ``SET_FOREGROUND_FAINT_``, - ``SET_BACKGROUND_3INTS_`` renamed to ``SET_BACKGROUND_FAINT_``, - ``SET_FOREGROUND_SHORT_`` renamed to ``SET_FOREGROUND_SLOWBLINK_``, and - ``SET_BACKGROUND_SHORT_`` renamed to ``SET_BACKGROUND_SLOWBLINK_``. - -**Deprecated:** - -* - -**Removed:** - -* ``ansi_tools.ANSI_REVERSE_COLOR_NAME_TRANSLATIONS`` removed, as it is - no longer needed. - -**Fixed:** - -* Fixed issues where ``$LS_COLORS`` could not convert valid ANSI colors. - -**Security:** - -*