File: CHANGELOG.md

package info (click to toggle)
rust-nu-ansi-term 0.50.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 312 kB
  • sloc: makefile: 2
file content (82 lines) | stat: -rw-r--r-- 2,199 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Changelog

## v0.47.0 (2023-03-13)

### Breaking changes

- Bumped minimum supported Rust version (MSRV) to 1.62.1
- Change of `Color::default()` value to the ANSI default color `Color::Default` (code `39` and `49` for foreground and background respectively). This replaces `Color::White` as the default value.

### Other changes

- `const`ification of several functions and methods.
- Improved CI workflow.
- Updated to Rust edition 2021.
- Replaced `winapi` dependency with `windows-sys`.
- Removed `overload` dependency.
- Added `AnsiGenericString::as_str()` to allow access to the underlying string.
- Fixed typos in README.
- Added `CHANGELOG.md` for changes since forking `ansi_term`.

## v0.46.0 (2022-06-03)

- Removed `impl Deref` for `AnsiGenericString`.
- Improved README headings.

## v0.45.1 (2022-03-27)

- Added `Color::Default` enum variant with ansi codes `39` and `49` for foreground & background.

## v0.45.0 (2022-03-16)

- Fixed examples in README.
- Fixed typos in documentation.
- Renamed `ANSIByteStrings` to `AnsiByteStrings`.
- Added GitHub Actions workflow.
- Changed authors metadata.
- Updated license

## v0.43.0 (2022-01-18)

- Fixed clippy warning.

## v0.40.0 (2021-11-16)

- Fixed clippy warning.

## v0.38.0 (2021-10-05)

- Removed `itertools` dependency.

## v0.37.0 (2021-09-14)

- Fixed clippy warnings.

## v0.31.0 (2021-05-11)

- Implemented `Default` trait for `Color` returning `Color::White`.
- Added helpers for gradients.
- Fixed clippy warning.

## v0.30.0 (2021-04-21)

- Export `ansi` module to expose `ansi::RESET`.

## v0.29.0 (2021-03-30)

- Renamed `Color::RGB` enum variant to `Color::Rgb`.
- Renamed `ANSIByteString` to `AnsiByteString`.
- Renamed `ANSIGenericString` to `AnsiGenericString`.
- Renamed `ANSIGenericStrings` to `AnsiGenericStrings`.
- Renamed `ANSIString` to `AnsiString`.
- Renamed `ANSIStrings` to `AnsiStrings`.

## v0.28.0 (2021-03-09)

- Forked `ansi_term` as `nu-ansi-term`.
- Added Nushell project contributors to the authors.
- Updated README.md.
- Renamed `Colour` to `Color`.
- Renamed some files ending in `colour` to `color`.
- Added "bright" colors ansi 90-97 (foreground) and 100-107 (background).
- Ran cargo fmt