diff --git a/NEWS.rst b/NEWS.rst index fcd15a7..4523c8e 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -4,6 +4,38 @@ eliot-tree changelog .. towncrier release notes start +Eliottree 19.0.0 (2020-01-14) +============================= + +Features +-------- + +- Tree lines are now colored to help differentiate nested tasks, action tasks that have failed are also colored distinctly; `--no-color-tree` will disable tree line colors. (#76) +- An alternative color theme is now provided for light themed terminals, the `COLORFGBG` environment variable is used to try detect this but can be set explicitly with `--theme light`. (#78) +- Timestamps can now be displayed in local time with `--local-timezone`. (#79) +- Unicode and color output is now supported on Windows. (#82) +- Colorize tree lines by default, use `--no-color-tree` to disable the feature. Tree lines normally cycle through several colors, however the lines of failed actions will be colored in a way that differentiates them. (#87) +- It is now possible to configure eliottree's defaults via a config file, as well as override the color theme. Use `--show-default-config` to create a base config. (#88) + + +Bugfixes +-------- + +- Passing multiple `--select` arguments interacted in a way that always failed. (#37) + + +Improved Documentation +---------------------- + +- Added some examples of `--select` usage. (#37) + + +Misc +---- + +- #75 + + Eliottree 18.1.0 (2018-07-30) ============================= diff --git a/src/eliottree/newsfragments/37.bugfix b/src/eliottree/newsfragments/37.bugfix deleted file mode 100644 index 2305a72..0000000 --- a/src/eliottree/newsfragments/37.bugfix +++ /dev/null @@ -1 +0,0 @@ -Passing multiple `--select` arguments interacted in a way that always failed. diff --git a/src/eliottree/newsfragments/37.doc b/src/eliottree/newsfragments/37.doc deleted file mode 100644 index 36f2249..0000000 --- a/src/eliottree/newsfragments/37.doc +++ /dev/null @@ -1 +0,0 @@ -Added some examples of `--select` usage. diff --git a/src/eliottree/newsfragments/75.misc b/src/eliottree/newsfragments/75.misc deleted file mode 100644 index 03ab9b5..0000000 --- a/src/eliottree/newsfragments/75.misc +++ /dev/null @@ -1 +0,0 @@ -Use the `eliot.parse` public API instead of a private Eliot API. diff --git a/src/eliottree/newsfragments/76.feature b/src/eliottree/newsfragments/76.feature deleted file mode 100644 index 70a2861..0000000 --- a/src/eliottree/newsfragments/76.feature +++ /dev/null @@ -1 +0,0 @@ -Tree lines are now colored to help differentiate nested tasks, action tasks that have failed are also colored distinctly; `--no-color-tree` will disable tree line colors. diff --git a/src/eliottree/newsfragments/78.feature b/src/eliottree/newsfragments/78.feature deleted file mode 100644 index df5e92b..0000000 --- a/src/eliottree/newsfragments/78.feature +++ /dev/null @@ -1 +0,0 @@ -An alternative color theme is now provided for light themed terminals, the `COLORFGBG` environment variable is used to try detect this but can be set explicitly with `--theme light`. diff --git a/src/eliottree/newsfragments/79.feature b/src/eliottree/newsfragments/79.feature deleted file mode 100644 index 4c363d7..0000000 --- a/src/eliottree/newsfragments/79.feature +++ /dev/null @@ -1 +0,0 @@ -Timestamps can now be displayed in local time with `--local-timezone`. diff --git a/src/eliottree/newsfragments/82.feature b/src/eliottree/newsfragments/82.feature deleted file mode 100644 index 8235fa2..0000000 --- a/src/eliottree/newsfragments/82.feature +++ /dev/null @@ -1 +0,0 @@ -Unicode and color output is now supported on Windows. diff --git a/src/eliottree/newsfragments/87.feature b/src/eliottree/newsfragments/87.feature deleted file mode 100644 index 50bf0c7..0000000 --- a/src/eliottree/newsfragments/87.feature +++ /dev/null @@ -1 +0,0 @@ -Colorize tree lines by default, use `--no-color-tree` to disable the feature. Tree lines normally cycle through several colors, however the lines of failed actions will be colored in a way that differentiates them. diff --git a/src/eliottree/newsfragments/88.feature b/src/eliottree/newsfragments/88.feature deleted file mode 100644 index 2d35a65..0000000 --- a/src/eliottree/newsfragments/88.feature +++ /dev/null @@ -1 +0,0 @@ -It is now possible to configure eliottree's defaults via a config file, as well as override the color theme. Use `--show-default-config` to create a base config.