From 9ecb48aa991e569d688716dff380434d5e785527 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Fri, 28 Oct 2016 17:59:14 +0200 Subject: [PATCH] fixup NEWS --- NEWS.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/NEWS.md b/NEWS.md index edf49a6e89f9d..b622120b7c46b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -44,6 +44,12 @@ Library improvements For example, to get orange warning messages, simply set `ENV["JULIA_WARN_COLOR"] = 208`. Please note that not all terminals support 256 colors. + * The function `print_with_color` no longer prints text in bold by default ([#18628]). + Instead, the function now take a keyword argument `bold::Bool` which determines whether to print in bold or not. + On some terminals, printing a color in non bold results in slightly darker colors being printed than when printing in bold. + Therefore, light versions of the colors are now supported. + For the available colors see the help entry on `print_with_color`. + * The default color for info messages has been changed from blue to cyan ([#18442]). This can be changed back to the original color by setting the environment variable `JULIA_INFO_COLOR` to `"blue"`. One way of doing this is by adding `ENV["JULIA_INFO_COLOR"] = :blue` to the `.juliarc.jl` file. @@ -690,5 +696,6 @@ Language tooling improvements [#18346]: https://github.com/JuliaLang/julia/issues/18346 [#18442]: https://github.com/JuliaLang/julia/issues/18442 [#18473]: https://github.com/JuliaLang/julia/issues/18473 +[#18628]: https://github.com/JuliaLang/julia/issues/18628 [#18839]: https://github.com/JuliaLang/julia/issues/18839 [#19018]: https://github.com/JuliaLang/julia/issues/19018