Skip to content

Commit

Permalink
0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
TimonPost committed Jun 15, 2019
1 parent 216105a commit cdb393e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion crossterm_cursor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crossterm_input/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down

0 comments on commit cdb393e

Please sign in to comment.