- Bumped minimum supported Rust version (MSRV) to 1.62.1
- Change of
Color::default()
value to the ANSI default colorColor::Default
(code39
and49
for foreground and background respectively). This replacesColor::White
as the default value.
const
ification of several functions and methods.- Improved CI workflow.
- Updated to Rust edition 2021.
- Replaced
winapi
dependency withwindows-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 forkingansi_term
.
- Removed
impl Deref
forAnsiGenericString
. - Improved README headings.
- Added
Color::Default
enum variant with ansi codes39
and49
for foreground & background.
- Fixed examples in README.
- Fixed typos in documentation.
- Renamed
ANSIByteStrings
toAnsiByteStrings
. - Added GitHub Actions workflow.
- Changed authors metadata.
- Updated license
- Fixed clippy warning.
- Fixed clippy warning.
- Removed
itertools
dependency.
- Fixed clippy warnings.
- Implemented
Default
trait forColor
returningColor::White
. - Added helpers for gradients.
- Fixed clippy warning.
- Export
ansi
module to exposeansi::RESET
.
- Renamed
Color::RGB
enum variant toColor::Rgb
. - Renamed
ANSIByteString
toAnsiByteString
. - Renamed
ANSIGenericString
toAnsiGenericString
. - Renamed
ANSIGenericStrings
toAnsiGenericStrings
. - Renamed
ANSIString
toAnsiString
. - Renamed
ANSIStrings
toAnsiStrings
.
- Forked
ansi_term
asnu-ansi-term
. - Added Nushell project contributors to the authors.
- Updated README.md.
- Renamed
Colour
toColor
. - Renamed some files ending in
colour
tocolor
. - Added "bright" colors ansi 90-97 (foreground) and 100-107 (background).
- Ran cargo fmt