Skip to content

Commit dc44f65

Browse files
committed
v0.7.3
1 parent 7d02be5 commit dc44f65

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

CHANGELOG.md

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

3+
## 0.7.3 - 2025-05-21
4+
5+
- Add --just argument to load recipes from justfile
6+
- Add title configuration for the proc list pane
7+
- Add name optional argument to "add-proc"
8+
- Fix nushell (Handle CPR sequence)
9+
10+
311
## 0.7.2 - 2025-01-20
412

513
- Add duplicate selected process command

Cargo.lock

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

scripts/build-linux-aarch64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ podman run -it --workdir /app \
1515
-v $(pwd)/helpers:/app/helpers \
1616
-v $(pwd)/scripts:/app/scripts \
1717
-v $(pwd)/release:/app/release \
18-
rust:1.78.0-alpine3.20 \
18+
rust:1.87.0-alpine3.21 \
1919
scripts/_build-linux.sh

scripts/build-linux-x86_64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ podman run -it --workdir /app \
1515
-v $(pwd)/helpers:/app/helpers \
1616
-v $(pwd)/scripts:/app/scripts \
1717
-v $(pwd)/release:/app/release \
18-
rust:1.78.0-alpine3.20 \
18+
rust:1.87.0-alpine3.21 \
1919
scripts/_build-linux.sh

scripts/build-windows-x86_64.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SET VERSION=0.7.2
1+
SET VERSION=0.7.3
22

33
MKDIR release\mprocs-%VERSION%-windows-x86_64 || exit /b
44

src/Cargo.toml

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

2424
[dependencies]
2525
portable-pty = { package = "mprocs-pty", path = "../vendor/pty", version = "0.7.0" }
26-
vt100 = { package = "mprocs-vt100", path = "../vendor/vt100", version = "0.7.0" }
26+
vt100 = { package = "mprocs-vt100", path = "../vendor/vt100", version = "0.7.3" }
2727
anyhow = "1.0.72"
2828
assert_matches = "1.5.0"
2929
base64 = "0.22.0"

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.7.0"
3+
version = "0.7.3"
44
edition = "2021"
55

66
description = "Fork of vt100 for mprocs"

0 commit comments

Comments
 (0)