Skip to content

Commit c4c3cc4

Browse files
chore: release v0.11.1
1 parent 0a82372 commit c4c3cc4

6 files changed

Lines changed: 42 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

debian/changelog

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11

2+
shpool (0.11.1) unstable; urgency=low
3+
4+
Added
5+
6+
* report attachments in shpool list --json
7+
8+
Fixed
9+
10+
* 0xFF input byte panicking session threads
11+
* /etc/environment keys with underscores being dropped ([#391](https://github.com/shell-pool/shpool/pull/391))
12+
13+
Other
14+
15+
* name the attachment field session_name_template
16+
* keep session attachments behind the lifecycle state lock
17+
* return peer pid from check_peer for attachments
18+
* fix "saftey" typo
19+
* bump toml from 0.8.23 to 1.1.2+spec-1.1.0
20+
* bump signal-hook from 0.3.18 to 0.4.4 ([#297](https://github.com/shell-pool/shpool/pull/297))
21+
22+
-- Shpool Authors <shpool-eng@google.com> Mon, 15 Jun 2026 18:10:36 +0000
23+
224
shpool (0.11.0) unstable; urgency=low
325

426
Other

libshpool/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libshpool"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
edition = "2024"
55
repository = "https://github.com/shell-pool/shpool"
66
authors = ["Ethan Pailes <pailes@google.com>"]
@@ -44,7 +44,7 @@ strip-ansi-escapes = "0.2.0" # cleaning up strings for pager display
4444
notify = { version = "7", features = ["crossbeam-channel"] } # watch config file for updates
4545
libproc = "0.14.8" # sniffing shells by examining the subprocess
4646
parking_lot = { version = "0.12", features = ["arc_lock"] } # faster more featureful sync primitives
47-
shpool-protocol = { version = "0.4.1", path = "../shpool-protocol" } # client-server protocol
47+
shpool-protocol = { version = "0.4.2", path = "../shpool-protocol" } # client-server protocol
4848

4949
# rusty wrapper for unix apis
5050
[dependencies.nix]

shpool-protocol/CHANGELOG

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11

2+
shpool-protocol (0.4.2) unstable; urgency=low
3+
4+
Added
5+
6+
* report attachments in shpool list --json
7+
8+
Other
9+
10+
* name the attachment field session_name_template
11+
12+
-- Shpool Authors <shpool-eng@google.com> Mon, 15 Jun 2026 18:10:36 +0000
13+
214
shpool-protocol (0.4.1) unstable; urgency=low
315

416
Added

shpool-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shpool-protocol"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2024"
55
authors = ["Ethan Pailes <pailes@google.com>"]
66
repository = "https://github.com/shell-pool/shpool"

shpool/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shpool"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
edition = "2024"
55
authors = ["Ethan Pailes <pailes@google.com>"]
66
repository = "https://github.com/shell-pool/shpool"
@@ -21,7 +21,7 @@ test_hooks = ["libshpool/test_hooks"]
2121
[dependencies]
2222
clap = { version = "4", features = ["derive"] } # cli parsing
2323
anyhow = "1" # dynamic, unstructured errors
24-
libshpool = { version = "0.11.0", path = "../libshpool" }
24+
libshpool = { version = "0.11.1", path = "../libshpool" }
2525

2626
[dev-dependencies]
2727
lazy_static = "1" # globals

0 commit comments

Comments
 (0)