Skip to content

Commit b2967c0

Browse files
committed
v0.7.0
1 parent 4603668 commit b2967c0

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## 0.7.0 - 2024-06-24
4+
35
- Terminal sequences parser rewritten using termwiz vt parser
46
- Copying fixes for Wayland (#88)
57
- Support cursor shapes

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mprocs",
3-
"version": "0.7.0-rc1",
3+
"version": "0.7.0",
44
"description": "Run multiple processes in parallel",
55
"license": "MIT",
66
"repository": "github:pvolok/mprocs",

src/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mprocs"
3-
version = "0.7.0-rc1"
3+
version = "0.7.0"
44
description = "TUI for running multiple processes"
55
repository = "https://github.com/pvolok/mprocs"
66
authors = ["Pavel Volokitin <pavelvolokitin@gmail.com>"]
@@ -22,6 +22,8 @@ name = "mprocs"
2222
path = "main.rs"
2323

2424
[dependencies]
25+
portable-pty = { package = "mprocs-pty", path = "../vendor/pty", version = "0.7.0" }
26+
vt100 = { package = "mprocs-vt100", path = "../vendor/vt100", version = "0.7.0" }
2527
anyhow = "1.0.72"
2628
assert_matches = "1.5.0"
2729
base64 = "0.22.0"
@@ -40,7 +42,6 @@ libc = "0.2.147"
4042
log = "0.4.19"
4143
mlua = { version = "0.9.0", features = ["lua52", "vendored", "serialize"] }
4244
phf = { version = "0.11.2", features = ["macros"] }
43-
portable-pty = { package = "mprocs-pty", path = "../vendor/pty", version = "0.1.0" }
4445
tui = { package = "ratatui", version = "0.26.2", features = ["serde"] }
4546
serde = { version = "1.0.177", features = ["derive"] }
4647
serde_yaml = "0.9.25"
@@ -49,7 +50,6 @@ triggered = "0.1.2"
4950
tui-input = "0.8.0"
5051
unicode-segmentation = "1.10.1"
5152
unicode-width = "0.1.10"
52-
vt100 = { package = "mprocs-vt100", path = "../vendor/vt100", version = "0.1.1" }
5353
which = "6.0.1"
5454
xdg = "2.5.2"
5555
termwiz = "0.22.0"

vendor/pty/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mprocs-pty"
3-
version = "0.1.0"
3+
version = "0.7.0"
44
authors = ["Wez Furlong"]
55
edition = "2018"
66
repository = "https://github.com/pvolok/mprocs"

vendor/vt100/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mprocs-vt100"
3-
version = "0.1.1"
3+
version = "0.7.0"
44
edition = "2021"
55

66
description = "Fork of vt100 for mprocs"

0 commit comments

Comments
 (0)