From 5e1c214f8cfd16570a2ee784e133ff5d405123ec Mon Sep 17 00:00:00 2001 From: Timon Date: Mon, 6 Jul 2020 19:57:35 +0200 Subject: [PATCH] 0.17.6 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f404bcc..ecc08a72e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# Version 0.17.6 +- Add functionality to retrieve color based on passed ansi code. +- Switch from 'futures' to 'futures-util' crate to reduce dependency count +- Mio 0.7 update +- signal-hook update +- Make windows raw_mode act on CONIN$ +- Added From<(u8, u8, u8)> Trait to Color::Rgb Enum +- Implement Color::try_from() +- Implement styler traits for `&'a str` + # Version 0.17.5 - Improved support of keymodifier for linux, arrow keys, function keys, home keys etc. - Add `SetTitle` command to change the terminal title. diff --git a/Cargo.toml b/Cargo.toml index 431ed7871..f99e3d897 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm" -version = "0.17.5" +version = "0.17.6" authors = ["T. Post"] description = "An crossplatform terminal library for manipulating terminals." repository = "https://github.com/crossterm-rs/crossterm" diff --git a/src/lib.rs b/src/lib.rs index 9200f97de..f589b32e6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -54,7 +54,7 @@ //! - Module `style` //! - Colors - [`SetForegroundColor`](style/struct.SetForegroundColor.html), //! [`SetBackgroundColor`](style/struct.SetBackgroundColor.html), -//! [`ResetColor`](style/struct.ResetColor.html) +//! [`ResetColor`](style/struct.ResetColor.html), [`SetColors`](style/struct.SetColors.html) //! - Attributes - [`SetAttribute`](style/struct.SetAttribute.html), [`SetAttributes`](style/struct.SetAttributes.html), //! [`PrintStyledContent`](style/struct.PrintStyledContent.html) //! - Module `terminal`