diff --git a/Cargo.lock b/Cargo.lock index 2e0d4010..08f5aa5c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "libshpool" -version = "0.11.0" +version = "0.11.1" dependencies = [ "anyhow", "assert_matches", @@ -1028,7 +1028,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "shpool" -version = "0.11.0" +version = "0.11.1" dependencies = [ "anyhow", "clap", @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "shpool-protocol" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "clap", diff --git a/debian/changelog b/debian/changelog index 91eee8f7..e2653a9e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,26 @@ +shpool (0.11.1) unstable; urgency=low + + Added + + * report attachments in shpool list --json + + Fixed + + * 0xFF input byte panicking session threads + * /etc/environment keys with underscores being dropped ([#391](https://github.com/shell-pool/shpool/pull/391)) + + Other + + * name the attachment field session_name_template + * keep session attachments behind the lifecycle state lock + * return peer pid from check_peer for attachments + * fix "saftey" typo + * bump toml from 0.8.23 to 1.1.2+spec-1.1.0 + * bump signal-hook from 0.3.18 to 0.4.4 ([#297](https://github.com/shell-pool/shpool/pull/297)) + + -- Shpool Authors Mon, 15 Jun 2026 18:10:36 +0000 + shpool (0.11.0) unstable; urgency=low Other diff --git a/libshpool/Cargo.toml b/libshpool/Cargo.toml index ae77d684..5c980f25 100644 --- a/libshpool/Cargo.toml +++ b/libshpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libshpool" -version = "0.11.0" +version = "0.11.1" edition = "2024" repository = "https://github.com/shell-pool/shpool" authors = ["Ethan Pailes "] @@ -44,7 +44,7 @@ strip-ansi-escapes = "0.2.0" # cleaning up strings for pager display notify = { version = "7", features = ["crossbeam-channel"] } # watch config file for updates libproc = "0.14.8" # sniffing shells by examining the subprocess parking_lot = { version = "0.12", features = ["arc_lock"] } # faster more featureful sync primitives -shpool-protocol = { version = "0.4.1", path = "../shpool-protocol" } # client-server protocol +shpool-protocol = { version = "0.4.2", path = "../shpool-protocol" } # client-server protocol # rusty wrapper for unix apis [dependencies.nix] diff --git a/shpool-protocol/CHANGELOG b/shpool-protocol/CHANGELOG index d39dc2ae..4261618e 100644 --- a/shpool-protocol/CHANGELOG +++ b/shpool-protocol/CHANGELOG @@ -1,4 +1,16 @@ +shpool-protocol (0.4.2) unstable; urgency=low + + Added + + * report attachments in shpool list --json + + Other + + * name the attachment field session_name_template + + -- Shpool Authors Mon, 15 Jun 2026 18:10:36 +0000 + shpool-protocol (0.4.1) unstable; urgency=low Added diff --git a/shpool-protocol/Cargo.toml b/shpool-protocol/Cargo.toml index ee134d8a..e42b5fe1 100644 --- a/shpool-protocol/Cargo.toml +++ b/shpool-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shpool-protocol" -version = "0.4.1" +version = "0.4.2" edition = "2024" authors = ["Ethan Pailes "] repository = "https://github.com/shell-pool/shpool" diff --git a/shpool/Cargo.toml b/shpool/Cargo.toml index 5b23a773..33fe80c3 100644 --- a/shpool/Cargo.toml +++ b/shpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shpool" -version = "0.11.0" +version = "0.11.1" edition = "2024" authors = ["Ethan Pailes "] repository = "https://github.com/shell-pool/shpool" @@ -21,7 +21,7 @@ test_hooks = ["libshpool/test_hooks"] [dependencies] clap = { version = "4", features = ["derive"] } # cli parsing anyhow = "1" # dynamic, unstructured errors -libshpool = { version = "0.11.0", path = "../libshpool" } +libshpool = { version = "0.11.1", path = "../libshpool" } [dev-dependencies] lazy_static = "1" # globals