From f8f76dc2e10fa63265c9ada32557c83154f81f49 Mon Sep 17 00:00:00 2001 From: Timon Post Date: Sat, 11 Jan 2020 18:09:11 +0100 Subject: [PATCH] 0.14.2 --- CHANGELOG.md | 3 +++ Cargo.toml | 4 ++-- README.md | 15 --------------- 3 files changed, 5 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5602fb..cceba84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# Version 0.14.2 +- Fix TIOCGWINSZ for FreeBSD + # Version 0.14.1 - Made windows cursor position relative to the window instead absolute to the screen buffer windows. - Fix windows bug with `queue` macro were it consumed a type and required an type to be `Copy`. diff --git a/Cargo.toml b/Cargo.toml index c297f89..b07d56a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm" -version = "0.14.0" +version = "0.14.2" authors = ["T. Post"] description = "An crossplatform terminal library for manipulating terminals." repository = "https://github.com/crossterm-rs/crossterm" @@ -34,9 +34,9 @@ event-stream = ["futures"] # [dependencies] bitflags = "1.2" -futures = { version = "0.3", optional = true } lazy_static = "1.4" parking_lot = "0.10" +futures = { version = "0.3", optional = true } serde = { version = "1.0.0", features = ["derive"], optional = true } # diff --git a/README.md b/README.md index a868946..45fb012 100644 --- a/README.md +++ b/README.md @@ -14,21 +14,6 @@ worry about the platform you are working with. This crate supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested, see [Tested Terminals](#tested-terminals) for more info). -## Note on Migration - -You may have noticed that Crossterm has been -[changing](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md) very quickly with the latest versions. -We have done a lot of API-breaking changes by renaming functions, commands, changing the exports, -improving the encapsulation, etc. However, all of this happens to improve the library and make it better -and ready for a possible [1.0 release](#287). We want to stick to the -[Command API](https://docs.rs/crossterm/#command-api) and remove all other ways to use crossterm. -Try to use this API and change your code accordingly. -This way you will survive or overcome major migration problems ;). - -We hope you can understand this, feel free to ask around in [discord](https://discord.gg/K4nyTDB) if you have -questions. For up-to-date examples, have a look at the [examples](https://github.com/crossterm-rs/examples/tree/master) -repository. Sorry for the inconvenience. - > It's highly recommended to read the > [Upgrade from 0.13 to 0.14](https://github.com/crossterm-rs/crossterm/wiki/Upgrade-from-0.13-to-0.14) > documentation, which explains everything you need to know.