1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-28 16:07:34 +03:00

pty: bump version

The changes in #1275 introduce an API change, so let's not forget to
bump this.
This commit is contained in:
Wez Furlong 2021-11-23 05:17:20 -07:00
parent cda28fa0ad
commit 30cb55a7bd
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3427,7 +3427,7 @@ dependencies = [
[[package]]
name = "portable-pty"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"anyhow",
"bitflags",

View File

@ -1,6 +1,6 @@
[package]
name = "portable-pty"
version = "0.5.0"
version = "0.6.0"
authors = ["Wez Furlong"]
edition = "2018"
repository = "https://github.com/wez/wezterm"

View File

@ -23,7 +23,7 @@ filedescriptor = { version="0.8", path = "../filedescriptor" }
filenamegen = "0.2"
libc = "0.2"
log = "0.4"
portable-pty = { version="0.5", path = "../pty" }
portable-pty = { version="0.6", path = "../pty" }
regex = "1"
smol = "1.2"
ssh2 = {version="0.9.3", features=["openssl-on-win32"]}