Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Cargo.lock

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

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

shpool (0.10.1) unstable; urgency=low

Added

* add --startup-cmd flag ([#371](https://github.com/shell-pool/shpool/pull/371))
* add var_default config option ([#370](https://github.com/shell-pool/shpool/pull/370))
* add events socket

-- Shpool Authors <shpool-eng@google.com> Wed, 20 May 2026 21:10:24 +0000

shpool (0.10.0) unstable; urgency=low

Added
Expand Down
4 changes: 2 additions & 2 deletions libshpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libshpool"
version = "0.10.0"
version = "0.10.1"
edition = "2024"
repository = "https://github.com/shell-pool/shpool"
authors = ["Ethan Pailes <pailes@google.com>"]
Expand Down Expand Up @@ -45,7 +45,7 @@ notify = { version = "7", features = ["crossbeam-channel"] } # watch config fil
libproc = "0.14.8" # sniffing shells by examining the subprocess
daemonize = "0.5" # autodaemonization
parking_lot = { version = "0.12", features = ["arc_lock"] } # faster more featureful sync primitives
shpool-protocol = { version = "0.4.0", path = "../shpool-protocol" } # client-server protocol
shpool-protocol = { version = "0.4.1", path = "../shpool-protocol" } # client-server protocol

# rusty wrapper for unix apis
[dependencies.nix]
Expand Down
8 changes: 8 additions & 0 deletions shpool-protocol/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

shpool-protocol (0.4.1) unstable; urgency=low

Added

* add --startup-cmd flag ([#371](https://github.com/shell-pool/shpool/pull/371))

-- Shpool Authors <shpool-eng@google.com> Wed, 20 May 2026 21:10:24 +0000

shpool-protocol (0.4.0) unstable; urgency=low

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

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