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.

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

shpool (0.10.0) unstable; urgency=low

Added

* [**breaking**] list: align and drop STARTED_AT
* [**breaking**] add session name template support

Fixed

* [**breaking**] prevent bad chars in session names
* race race in attaching to existing sessions

Other

* std::sync::Mutex -> parking_lot::Mutex

-- Shpool Authors <shpool-eng@google.com> Thu, 07 May 2026 21:29:45 +0000

shpool (0.9.8) unstable; urgency=low

Fixed
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.9.8"
version = "0.10.0"
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.3.5", path = "../shpool-protocol" } # client-server protocol
shpool-protocol = { version = "0.4.0", 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.0) unstable; urgency=low

Added

* [**breaking**] add session name template support

-- Shpool Authors <shpool-eng@google.com> Thu, 07 May 2026 21:29:45 +0000

shpool-protocol (0.3.5) unstable; urgency=low

Other
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.3.5"
version = "0.4.0"
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.9.8"
version = "0.10.0"
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.9.8", path = "../libshpool" }
libshpool = { version = "0.10.0", path = "../libshpool" }

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