From 33bcad4d2303efbd4032b67dbcf8939482752e96 Mon Sep 17 00:00:00 2001 From: Timon Post Date: Thu, 3 Jan 2019 08:39:00 -0800 Subject: [PATCH] Release 5.2 --- Cargo.toml | 2 +- README.md | 2 +- docs/ReleaseNotes.md | 2 +- src/lib.rs | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fad6780..b41692b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm" -version = "0.6.0" +version = "0.5.2" authors = ["T. Post"] description = "An crossplatform terminal library for manipulating terminals." repository = "https://github.com/TimonPost/crossterm" diff --git a/README.md b/README.md index 356e15f..8aee2bf 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ This crate supports all UNIX and windows terminals down to windows 7 (not all te ## Getting Started -This documentation is only for Crossterm version `0.5` if you have an older version of Crossterm I suggest you check the [Upgrade Manual](https://github.com/TimonPost/crossterm/blob/master/docs/UpgradeManual.md). Also, check out the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) folders with detailed examples for all functionality of this crate. +This documentation is only for Crossterm version `0.5.^` if you have an older version of Crossterm I suggest you check the [Upgrade Manual](https://github.com/TimonPost/crossterm/blob/master/docs/UpgradeManual.md). Also, check out the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) folders with detailed examples for all functionality of this crate. Add the Crossterm package to your `Cargo.toml` file. diff --git a/docs/ReleaseNotes.md b/docs/ReleaseNotes.md index bf0e83a..0a69b98 100644 --- a/docs/ReleaseNotes.md +++ b/docs/ReleaseNotes.md @@ -1,4 +1,4 @@ -# Changes crossterm 0.6.0 +# Changes crossterm 0.5.2 - WinApi rewrite and correctly error handled [PR 67](https://github.com/TimonPost/crossterm/pull/67) - Windows attribute support [PR 62](https://github.com/TimonPost/crossterm/pull/62) - Readline bug fix windows systems [PR 62](https://github.com/TimonPost/crossterm/pull/62) diff --git a/src/lib.rs b/src/lib.rs index 922c4df..2205966 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -304,6 +304,7 @@ extern crate termios; #[cfg(windows)] extern crate crossterm_winapi; +extern crate crossterm_winapi; #[cfg(windows)] extern crate winapi;