From 08c2b67a93286d626ca38e1125218ea1620eaf52 Mon Sep 17 00:00:00 2001 From: "release-plz-for-shpool[bot]" <175248994+release-plz-for-shpool[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2026 15:22:47 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- debian/changelog | 21 +++++++++++++++++++++ libshpool/Cargo.toml | 4 ++-- shpool-protocol/CHANGELOG | 13 +++++++++++++ shpool-protocol/Cargo.toml | 2 +- shpool/Cargo.toml | 4 ++-- 6 files changed, 42 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0ff4de69..4bd1871d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -486,7 +486,7 @@ dependencies = [ [[package]] name = "libshpool" -version = "0.11.4" +version = "0.11.5" dependencies = [ "anyhow", "assert_matches", @@ -998,7 +998,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "shpool" -version = "0.11.4" +version = "0.11.5" dependencies = [ "anyhow", "clap", @@ -1016,7 +1016,7 @@ dependencies = [ [[package]] name = "shpool-protocol" -version = "0.4.2" +version = "0.4.3" dependencies = [ "anyhow", "clap", diff --git a/debian/changelog b/debian/changelog index c62b31b9..0ab461e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,25 @@ +shpool (0.11.5) unstable; urgency=low + + Added + + * add automatic env var reload to prompt hooks + * add support for forwarding the entire env + * add shell_pid to 'shpool list --json' + + Fixed + + * check events peer + * add header parsing decode limit + + Other + + * Update README.md + * bump notify + * bump shpool_pty + + -- Shpool Authors Thu, 17 Sep 2026 15:22:44 +0000 + shpool (0.11.4) unstable; urgency=low Added diff --git a/libshpool/Cargo.toml b/libshpool/Cargo.toml index f94e1873..41eb3e81 100644 --- a/libshpool/Cargo.toml +++ b/libshpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libshpool" -version = "0.11.4" +version = "0.11.5" 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 = "8", 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.2", path = "../shpool-protocol" } # client-server protocol +shpool-protocol = { version = "0.4.3", path = "../shpool-protocol" } # client-server protocol # rusty wrapper for unix apis [dependencies.nix] diff --git a/shpool-protocol/CHANGELOG b/shpool-protocol/CHANGELOG index ae3a7927..2468c826 100644 --- a/shpool-protocol/CHANGELOG +++ b/shpool-protocol/CHANGELOG @@ -1,4 +1,17 @@ +shpool-protocol (0.4.3) unstable; urgency=low + + Added + + * add shell_pid to 'shpool list --json' + + Other + + * Update README.md + * decouple protocol wire version from source + + -- Shpool Authors Thu, 17 Sep 2026 15:22:44 +0000 + shpool-protocol (0.4.2) unstable; urgency=low Added diff --git a/shpool-protocol/Cargo.toml b/shpool-protocol/Cargo.toml index e42b5fe1..6b9bbc1e 100644 --- a/shpool-protocol/Cargo.toml +++ b/shpool-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shpool-protocol" -version = "0.4.2" +version = "0.4.3" edition = "2024" authors = ["Ethan Pailes "] repository = "https://github.com/shell-pool/shpool" diff --git a/shpool/Cargo.toml b/shpool/Cargo.toml index d0309a51..44f26a2d 100644 --- a/shpool/Cargo.toml +++ b/shpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shpool" -version = "0.11.4" +version = "0.11.5" 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.4", path = "../libshpool" } +libshpool = { version = "0.11.5", path = "../libshpool" } [dev-dependencies] lazy_static = "1" # globals