diff --git a/Cargo.toml b/Cargo.toml index 66c8452..b7a61f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm" -version = "0.9.5" +version = "0.9.6" authors = ["T. Post"] description = "An crossplatform terminal library for manipulating terminals." repository = "https://github.com/TimonPost/crossterm" @@ -33,10 +33,10 @@ members = [ [dependencies] crossterm_screen = { optional = true, version = "0.2.3" } -crossterm_cursor = { optional = true, version = "0.2.3" } +crossterm_cursor = { optional = true, version = "0.2.4" } crossterm_terminal = { optional = true, version = "0.2.4" } crossterm_style = { optional = true, version = "0.3.3" } -crossterm_input = { optional = true, version = "0.3.5" } +crossterm_input = { optional = true, version = "0.3.6" } crossterm_utils = { optional = false, version = "0.2.3" } [lib] diff --git a/crossterm_cursor/Cargo.toml b/crossterm_cursor/Cargo.toml index d621e05..2b03a16 100644 --- a/crossterm_cursor/Cargo.toml +++ b/crossterm_cursor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_cursor" -version = "0.2.3" +version = "0.2.4" authors = ["T. Post"] description = "A cross-platform library for moving the terminal cursor." repository = "https://github.com/TimonPost/crossterm" diff --git a/crossterm_input/Cargo.toml b/crossterm_input/Cargo.toml index fd7101f..8a3edfc 100644 --- a/crossterm_input/Cargo.toml +++ b/crossterm_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_input" -version = "0.3.5" +version = "0.3.6" authors = ["T. Post"] description = "A cross-platform library for reading userinput." repository = "https://github.com/TimonPost/crossterm" diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 5a60ac0..af90a0f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,3 +1,9 @@ +# Changes crossterm 0.9.6 +- Copy for KeyEvent +- CTRL + Left, Down, Up, Right key support +- SHIFT + Left, Down, Up, Right key support +- Fixed UNIX cursor position bug [issue](https://github.com/TimonPost/crossterm/issues/140), [PR](https://github.com/TimonPost/crossterm/pull/152) + # Changes crossterm 0.9.5 - Prefetching buffer size for more efficient windows input reads. [PR](https://github.com/TimonPost/crossterm/pull/144)