diff --git a/Cargo.lock b/Cargo.lock index 389093cf9..cedfe15e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4652,7 +4652,7 @@ checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b" [[package]] name = "termwiz" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "base64", diff --git a/tabout/Cargo.toml b/tabout/Cargo.toml index d1e0a1a11..7bf4cde00 100644 --- a/tabout/Cargo.toml +++ b/tabout/Cargo.toml @@ -9,4 +9,4 @@ license = "MIT" documentation = "https://docs.rs/tabout" [dependencies] -termwiz = { path = "../termwiz", version="0.18"} +termwiz = { path = "../termwiz", version="0.19"} diff --git a/term/Cargo.toml b/term/Cargo.toml index c6ff78b7a..fc005ddab 100644 --- a/term/Cargo.toml +++ b/term/Cargo.toml @@ -38,6 +38,6 @@ env_logger = "0.9" k9 = "0.11.0" [dependencies.termwiz] -version = "0.18" +version = "0.19" path = "../termwiz" features = ["use_image"] diff --git a/termwiz/CHANGELOG.md b/termwiz/CHANGELOG.md index b099a795b..d4354521e 100644 --- a/termwiz/CHANGELOG.md +++ b/termwiz/CHANGELOG.md @@ -1,6 +1,12 @@ -main: +## termwiz-0.19.0: +* Added `Action::PrintString` to more efficiently accumulate sequences of + printed characters. +* Fixed build on 32-bit platforms +* Fixed build on Android systems +* Updates for Unicode 15 +* Widgets can now control cursor visibility * BREAKING: We now request modifyOtherKeys when setting up the unix terminal. As a consequence, CTRL keys like `CTRL-C` are now reported as `CTRL-lower-case-c` rather than `CTRL-upper-case-C`. We do this even when diff --git a/termwiz/Cargo.toml b/termwiz/Cargo.toml index 0705e3175..03a3c1df8 100644 --- a/termwiz/Cargo.toml +++ b/termwiz/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Wez Furlong"] name = "termwiz" -version = "0.18.0" +version = "0.19.0" edition = "2018" repository = "https://github.com/wez/wezterm" description = "Terminal Wizardry for Unix and Windows" diff --git a/wezterm-ssh/Cargo.toml b/wezterm-ssh/Cargo.toml index 4581cb91a..623b6d1a1 100644 --- a/wezterm-ssh/Cargo.toml +++ b/wezterm-ssh/Cargo.toml @@ -48,5 +48,5 @@ env_logger = "0.9" rstest = "0.15" shell-words = "1.1" smol-potat = "1.1.2" -termwiz = { version = "0.18", path = "../termwiz" } +termwiz = { version = "0.19", path = "../termwiz" } whoami = "1.1"