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
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.

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

shpool (0.9.4) unstable; urgency=low

Added

* *(list)* add --json flag with connect/disconnect timestamps ([#294](https://github.com/shell-pool/shpool/pull/294))

Fixed

* hang when starting with nu shell ([#272](https://github.com/shell-pool/shpool/pull/272))

Other

* refactor shell descriptor selection ([#274](https://github.com/shell-pool/shpool/pull/274))

-- Shpool Authors <shpool-eng@google.com> Wed, 28 Jan 2026 15:21:19 +0000

shpool (0.9.3) 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.9.3"
version = "0.9.4"
edition = "2021"
repository = "https://github.com/shell-pool/shpool"
authors = ["Ethan Pailes <pailes@google.com>"]
Expand Down Expand Up @@ -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
daemonize = "0.5" # autodaemonization
shpool-protocol = { version = "0.3.2", path = "../shpool-protocol" } # client-server protocol
shpool-protocol = { version = "0.3.3", 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.3.3) unstable; urgency=low

Added

* *(list)* add --json flag with connect/disconnect timestamps ([#294](https://github.com/shell-pool/shpool/pull/294))

-- Shpool Authors <shpool-eng@google.com> Wed, 28 Jan 2026 15:21:19 +0000

shpool-protocol (0.3.2) 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.3.2"
version = "0.3.3"
edition = "2021"
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.3"
version = "0.9.4"
edition = "2021"
authors = ["Ethan Pailes <pailes@google.com>"]
repository = "https://github.com/shell-pool/shpool"
Expand All @@ -18,7 +18,7 @@ rust-version = "1.74"
[dependencies]
clap = { version = "4", features = ["derive"] } # cli parsing
anyhow = "1" # dynamic, unstructured errors
libshpool = { version = "0.9.3", path = "../libshpool" }
libshpool = { version = "0.9.4", path = "../libshpool" }

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