Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

shpool (0.11.3) unstable; urgency=low

Fixed

* do not discard the shell's exit status when stdin closes first
* config watcher: avoid excessive wakes

-- Shpool Authors <shpool-eng@google.com> Mon, 24 Aug 2026 15:15:52 +0000

shpool (0.11.2) unstable; urgency=low

Other
Expand Down
2 changes: 1 addition & 1 deletion libshpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libshpool"
version = "0.11.2"
version = "0.11.3"
edition = "2024"
repository = "https://github.com/shell-pool/shpool"
authors = ["Ethan Pailes <pailes@google.com>"]
Expand Down
4 changes: 2 additions & 2 deletions shpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shpool"
version = "0.11.2"
version = "0.11.3"
edition = "2024"
authors = ["Ethan Pailes <pailes@google.com>"]
repository = "https://github.com/shell-pool/shpool"
Expand All @@ -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.2", path = "../libshpool" }
libshpool = { version = "0.11.3", path = "../libshpool" }

[dev-dependencies]
lazy_static = "1" # globals
Expand Down
Loading