This commit is contained in:
Timon Post 2020-01-11 18:09:11 +01:00
parent 17442caee2
commit f8f76dc2e1
3 changed files with 5 additions and 17 deletions

View File

@ -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`.

View File

@ -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 }
#

View File

@ -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.