1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 14:25:57 +03:00

termwiz: bump version ready for publish

This commit is contained in:
Wez Furlong 2023-02-12 06:50:43 -07:00
parent f2e342a25f
commit 3509e210ce
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
6 changed files with 17 additions and 5 deletions

2
Cargo.lock generated
View File

@ -4957,7 +4957,7 @@ checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8"
[[package]]
name = "termwiz"
version = "0.19.0"
version = "0.20.0"
dependencies = [
"anyhow",
"base64 0.21.0",

View File

@ -9,4 +9,4 @@ license = "MIT"
documentation = "https://docs.rs/tabout"
[dependencies]
termwiz = { path = "../termwiz", version="0.19"}
termwiz = { path = "../termwiz", version="0.20"}

View File

@ -38,6 +38,6 @@ env_logger = "0.10"
k9 = "0.11.0"
[dependencies.termwiz]
version = "0.19"
version = "0.20"
path = "../termwiz"
features = ["use_image"]

View File

@ -1,3 +1,15 @@
## termwiz-0.20.0:
* Support for horizontal scroll wheel event decoding. Thanks to
[@tlinford](https://github.com/tlinford)!
[#2813](https://github.com/wez/wezterm/issues/2813)
* Correctly recognize `Alt-[` keyboard events. Thanks to
[@imsnif](https://github.com/imsnif)!
[#3009](https://github.com/wez/wezterm/pull/3009)
* Adjusted Line clustering when bidi is disabled to improve perf when
used in wezterm
* Fix crash bug when using to TeenyString inside Cell with Rust 1.67
* Updated nerdfonts metadata for v2.3.3
## termwiz-0.19.0:

View File

@ -1,7 +1,7 @@
[package]
authors = ["Wez Furlong"]
name = "termwiz"
version = "0.19.0"
version = "0.20.0"
edition = "2018"
repository = "https://github.com/wez/wezterm"
description = "Terminal Wizardry for Unix and Windows"

View File

@ -48,5 +48,5 @@ env_logger = "0.10"
rstest = "0.16"
shell-words = "1.1"
smol-potat = "1.1.2"
termwiz = { version = "0.19", path = "../termwiz" }
termwiz = { version = "0.20", path = "../termwiz" }
whoami = "1.1"