Release 5.2
This commit is contained in:
parent
a0464a041d
commit
33bcad4d23
@ -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"
|
||||
|
@ -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.
|
||||
|
||||
|
@ -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)
|
||||
|
@ -304,6 +304,7 @@ extern crate termios;
|
||||
|
||||
#[cfg(windows)]
|
||||
extern crate crossterm_winapi;
|
||||
extern crate crossterm_winapi;
|
||||
#[cfg(windows)]
|
||||
extern crate winapi;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user