]> git.proxmox.com Git - rustc.git/blob - vendor/colored/CHANGELOG.md
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / vendor / colored / CHANGELOG.md
1
2 # 2.0.0 (July 14, 2020)
3 - Add support for true colours.
4 - Alter `Color` interface to return `Cow<'static, str>`
5
6 # 1.9.3 (February 24, 2020)
7 - Fix compilation regression for 1.34.0. Thanks @jlevon for reporting.
8
9 # 1.9.2 (January 11, 2020)
10 - Exposed `ColoredString` data through methods for purposes of interrogating the applied colours.
11 - Increased documentation.
12
13 # 1.9.1 (December 31, 2019)
14
15 - Remove deprecated `try!` macro in codebase
16 - Reduce allocations in `ColoredString` impl (PR#65)
17 - Added `"purple"` as match in `impl FromStr for Color` (PR#71)
18
19 # 1.9.0 (November 11, 2019)
20
21 - **[POSSIBLE_BREAKING CHANGE]:** Replace `winconsole` with `winapi`:
22 - Changes `set_virtual_terminal` function signature.
23 - Update dependencies
24 - Add Dockerfile
25 - Respect tty discovery for CLICOLOR
26
27 # 1.8.0 (April 30, 2019)
28
29 - FEAT: support Windows 10 colors
30
31 # 1.7.0 (January, 2019)
32 - TECH: update lazy\_static
33 - FEAT: introduce respect for the `NO_COLOR` environment variable
34
35 # 1.6.1 (July 9, 2018)
36 - TECH: update lazy\_static
37 - CHORE: fix typos in README and documentation
38
39 # 1.6.0 (October 31, 2017)
40 - FEAT: introduced bright colors. `"hello".bright_blue().on_bright_red();`
41 - FEAT: introduced strikethrough styling. `"hello".strikethrough();`
42
43 # 1.5.3 (September 28, 2017)
44
45 - FEAT: derive Copy and Clone for `Color`
46 - FEAT: derive Clone for `ColoredString`
47
48 # 1.5.2 (July 6, 2017)
49
50 - FIX: method `Colorize::reversed` has been added. `Colorize::reverse` was a typo, that we will keep
51 for compatibility
52
53 # 1.5.1 (May 9, 2017)
54
55 - Update lazy\_static to 0.2.
56
57 # 1.5.0 (May 1, 2017)
58
59 - FEAT: support for `"hello".color("blue")` (dynamic colors)
60
61 # 1.3.2 (Nov 26, 2016)
62
63 - FIX: usage of nested ColoredString again, no more style broken mid-line
64
65 # 1.3.1 (Oct 14, 2016)
66
67 - FIX: usage of ColoredString in a nested way broke the styling mid-line
68
69 # 1.3.0 (Jul 31, 2016)
70
71 - Provide various options for disabling the coloring in an API-compatible way
72
73 # 1.2.0 (Mar 30, 2016)
74
75 - Support the different formatting options, like padding and alignment
76
77 # 1.1.0 (Mar 15, 2016)
78
79 - Respect the CLICOLOR/CLICOLOR\_FORCE behavior. See [this specs](http://bixense.com/clicolors/)
80
81 # 1.0.1 (Mar 14, 2016)
82
83 - Add a CHANGLOG
84 - Fix crate dependencies: move `ansi_term` in dev\_dependencies
85
86 # 1.0.0 (Mar 13, 2016)
87
88 - Initial release