From 2773c354d3c4ea06aad24108df35c5f38e228658 Mon Sep 17 00:00:00 2001 From: Timon Post Date: Thu, 11 Apr 2019 17:37:06 +0200 Subject: [PATCH] Update --- Cargo.toml | 14 +++++++------- README.md | 2 +- crossterm_cursor/Cargo.toml | 4 ++-- crossterm_cursor/README.md | 2 +- crossterm_input/Cargo.toml | 6 +++--- crossterm_input/README.md | 2 +- crossterm_screen/Cargo.toml | 4 ++-- crossterm_screen/README.md | 2 +- crossterm_style/Cargo.toml | 4 ++-- crossterm_style/README.md | 2 +- crossterm_terminal/Cargo.toml | 6 +++--- crossterm_terminal/README.md | 2 +- 12 files changed, 25 insertions(+), 25 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 11917cf..0672a41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm" -version = "0.9.0" +version = "0.9.1" authors = ["T. Post"] description = "An crossplatform terminal library for manipulating terminals." repository = "https://github.com/TimonPost/crossterm" @@ -32,12 +32,12 @@ members = [ ] [dependencies] -crossterm_screen = { optional = true, version = "0.2.0" } -crossterm_cursor = { optional = true, version = "0.2.0" } -crossterm_terminal = { optional = true, version = "0.2.0" } -crossterm_style = { optional = true, version = "0.3.0" } -crossterm_input = { optional = true, version = "0.3.0" } -crossterm_utils = { optional = false, version = "0.2.0" } +crossterm_screen = { optional = true, version = "0.2.1" } +crossterm_cursor = { optional = true, version = "0.2.1" } +crossterm_terminal = { optional = true, version = "0.2.1" } +crossterm_style = { optional = true, version = "0.3.1" } +crossterm_input = { optional = true, version = "0.3.1" } +crossterm_utils = { optional = false, version = "0.2.1" } [lib] name = "crossterm" diff --git a/README.md b/README.md index a2339e2..fda9d5c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ [l3]: https://docs.rs/crossterm/ [s5]: https://img.shields.io/discord/560857607196377088.svg?logo=discord -[l5]: https://discord.gg/K4nyTDB. +[l5]: https://discord.gg/K4nyTDB [s6]: https://tokei.rs/b1/github/TimonPost/crossterm?category=code [s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master diff --git a/crossterm_cursor/Cargo.toml b/crossterm_cursor/Cargo.toml index e480495..4677208 100644 --- a/crossterm_cursor/Cargo.toml +++ b/crossterm_cursor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_cursor" -version = "0.2.0" +version = "0.2.1" authors = ["T. Post"] description = "A cross-platform library for moving the terminal cursor." repository = "https://github.com/TimonPost/crossterm" @@ -16,4 +16,4 @@ winapi = { version = "0.3.7", features = ["wincon","winnt","minwindef"] } crossterm_winapi = "0.1.2" [dependencies] -crossterm_utils = "0.2.0" \ No newline at end of file +crossterm_utils = "0.2.1" \ No newline at end of file diff --git a/crossterm_cursor/README.md b/crossterm_cursor/README.md index cb5b5be..43a1dcb 100644 --- a/crossterm_cursor/README.md +++ b/crossterm_cursor/README.md @@ -11,7 +11,7 @@ [l3]: https://docs.rs/crossterm_cursor/ [s5]: https://img.shields.io/discord/560857607196377088.svg?logo=discord -[l5]: https://discord.gg/K4nyTDB. +[l5]: https://discord.gg/K4nyTDB [s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master diff --git a/crossterm_input/Cargo.toml b/crossterm_input/Cargo.toml index 3280f2c..62df05b 100644 --- a/crossterm_input/Cargo.toml +++ b/crossterm_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_input" -version = "0.3.0" +version = "0.3.1" authors = ["T. Post"] description = "A cross-platform library for reading userinput." repository = "https://github.com/TimonPost/crossterm" @@ -19,5 +19,5 @@ crossterm_winapi = "0.1.2" libc = "0.2.51" [dependencies] -crossterm_utils = "0.2.0" -crossterm_screen = "0.2.0" \ No newline at end of file +crossterm_utils = "0.2.1" +crossterm_screen = "0.2.1" \ No newline at end of file diff --git a/crossterm_input/README.md b/crossterm_input/README.md index b4ad1c3..f1435ab 100644 --- a/crossterm_input/README.md +++ b/crossterm_input/README.md @@ -11,7 +11,7 @@ [l3]: https://docs.rs/crossterm_input/ [s5]: https://img.shields.io/discord/560857607196377088.svg?logo=discord -[l5]: https://discord.gg/K4nyTDB. +[l5]: https://discord.gg/K4nyTDB [s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master diff --git a/crossterm_screen/Cargo.toml b/crossterm_screen/Cargo.toml index 7cfdfc3..cc708c9 100644 --- a/crossterm_screen/Cargo.toml +++ b/crossterm_screen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_screen" -version = "0.2.0" +version = "0.2.1" authors = ["T. Post"] description = "A cross-platform library for raw and alternate screen." repository = "https://github.com/TimonPost/crossterm" @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -crossterm_utils = "0.2.0" +crossterm_utils = "0.2.1" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.7", features = ["minwindef", "wincon"] } diff --git a/crossterm_screen/README.md b/crossterm_screen/README.md index 900a3cd..ae5560c 100644 --- a/crossterm_screen/README.md +++ b/crossterm_screen/README.md @@ -11,7 +11,7 @@ [l3]: https://docs.rs/crossterm_screen/ [s5]: https://img.shields.io/discord/560857607196377088.svg?logo=discord -[l5]: https://discord.gg/K4nyTDB. +[l5]: https://discord.gg/K4nyTDB [s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master diff --git a/crossterm_style/Cargo.toml b/crossterm_style/Cargo.toml index 39a0c79..284a982 100644 --- a/crossterm_style/Cargo.toml +++ b/crossterm_style/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_style" -version = "0.3.0" +version = "0.3.1" authors = ["T. Post"] description = "A cross-platform library styling the terminal output." repository = "https://github.com/TimonPost/crossterm" @@ -16,4 +16,4 @@ winapi = { version = "0.3.7", features = ["wincon"] } crossterm_winapi = "0.1.2" [dependencies] -crossterm_utils = "0.2.0" \ No newline at end of file +crossterm_utils = "0.2.1" \ No newline at end of file diff --git a/crossterm_style/README.md b/crossterm_style/README.md index 6a6b47c..15a5b1d 100644 --- a/crossterm_style/README.md +++ b/crossterm_style/README.md @@ -11,7 +11,7 @@ [l3]: https://docs.rs/crossterm_style/ [s5]: https://img.shields.io/discord/560857607196377088.svg?logo=discord -[l5]: https://discord.gg/K4nyTDB. +[l5]: https://discord.gg/K4nyTDB [s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master diff --git a/crossterm_terminal/Cargo.toml b/crossterm_terminal/Cargo.toml index 6d8cd52..37c4464 100644 --- a/crossterm_terminal/Cargo.toml +++ b/crossterm_terminal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_terminal" -version = "0.2.0" +version = "0.2.1" authors = ["T. Post"] description = "A cross-platform library for doing terminal related actions." repository = "https://github.com/TimonPost/crossterm" @@ -18,5 +18,5 @@ crossterm_winapi = "0.1.2" libc = "0.2.51" [dependencies] -crossterm_utils = "0.2.0" -crossterm_cursor = "0.2.0" \ No newline at end of file +crossterm_utils = "0.2.1" +crossterm_cursor = "0.2.1" \ No newline at end of file diff --git a/crossterm_terminal/README.md b/crossterm_terminal/README.md index 455323a..e0968c9 100644 --- a/crossterm_terminal/README.md +++ b/crossterm_terminal/README.md @@ -11,7 +11,7 @@ [l3]: https://docs.rs/crossterm_terminal/ [s5]: https://img.shields.io/discord/560857607196377088.svg?logo=discord -[l5]: https://discord.gg/K4nyTDB. +[l5]: https://discord.gg/K4nyTDB [s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master