aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-06 05:30:19 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-06 05:30:19 -0500
commit42b90c3abe1ea1d3e5ab923f6800a95e63cbb823 (patch)
treed67340563a4bbd73700e3ec8572a92155ba6743b
parent7caa58a5d78705f19863ed213e8e94c885c4bb01 (diff)
downloadttyrec-bin-0.1.2.tar.gz
ttyrec-bin-0.1.2.zip
changelog and version bumpv0.1.2
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.lock10
-rw-r--r--Cargo.toml6
3 files changed, 14 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e6ce361..5dcbfc1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## [0.1.2] - 2021-12-06
+
+### Fixed
+
+* Bump vt100 dep to fix some display issues
+
## [0.1.1] - 2021-12-05
### Fixed
diff --git a/Cargo.lock b/Cargo.lock
index 97e13df..c497071 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -669,9 +669,9 @@ dependencies = [
[[package]]
name = "textmode"
-version = "0.2.1"
+version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "493c8d59bfc5d6573c5aea29a2b638957284bc17ad0e7ea41f55e5effec96069"
+checksum = "6b3f31cee8570f79f5d8cbf6f375e1379f55551015d48dafbde9a974df1b3987"
dependencies = [
"blocking",
"futures-lite",
@@ -723,7 +723,7 @@ dependencies = [
[[package]]
name = "ttyrec-bin"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"anyhow",
"async-std",
@@ -787,9 +787,9 @@ checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
[[package]]
name = "vt100"
-version = "0.13.2"
+version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a824f7a94093c1778b6971ea493f7b94a256e2fafbd21f812729440af80de89"
+checksum = "355ca5788c590a972ec74d0d8a2b7174919d7d6c149c9a481822eb8e99b5ac9b"
dependencies = [
"itoa",
"log",
diff --git a/Cargo.toml b/Cargo.toml
index c3876ae..829fba3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ttyrec-bin"
-version = "0.1.1"
+version = "0.1.2"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2021"
@@ -21,6 +21,6 @@ signal-hook = "0.3.10"
signal-hook-async-std = "0.2.1"
structopt = { version = "0.3.25", features = ["paw", "wrap_help"] }
terminal_size = "0.1.17"
-textmode = { version = "0.2.1", features = ["async"] }
+textmode = { version = "0.2.2", features = ["async"] }
ttyrec = { version = "0.3.2", features = ["async"] }
-vt100 = "0.13.2"
+vt100 = "0.14.0"