Skip to content

Commit e4d6fab

Browse files
chore: release
1 parent d8f0ae6 commit e4d6fab

6 files changed

Lines changed: 34 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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11

2+
shpool (0.7.1) unstable; urgency=low
3+
4+
Added
5+
6+
* add span traces at lock() points
7+
8+
Fixed
9+
10+
* forward shell env to pager
11+
* suppress prompt setup in screen restore
12+
13+
Other
14+
15+
* Better ssh config example
16+
* reader thread -> shell_to_client thread
17+
18+
-- Shpool Authors <shpool-eng@google.com> Mon, 16 Sep 2024 14:51:04 +0000
19+
220
shpool (0.7.0) unstable; urgency=low
321

422
Added

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.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
repository = "https://github.com/shell-pool/shpool"
66
authors = ["Ethan Pailes <pailes@google.com>"]
@@ -43,7 +43,7 @@ strip-ansi-escapes = "0.2.0" # cleaning up strings for pager display
4343
notify = "6" # watch config file for updates
4444
libproc = "0.14.8" # sniffing shells by examining the subprocess
4545
daemonize = "0.5" # autodaemonization
46-
shpool-protocol = { version = "0.2.0", path = "../shpool-protocol" } # client-server protocol
46+
shpool-protocol = { version = "0.2.1", path = "../shpool-protocol" } # client-server protocol
4747

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

shpool-protocol/CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
shpool-protocol (0.2.1) unstable; urgency=low
3+
4+
Other
5+
6+
* Better ssh config example
7+
8+
-- Shpool Authors <shpool-eng@google.com> Mon, 16 Sep 2024 14:51:04 +0000

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.2.0"
3+
version = "0.2.1"
44
edition = "2021"
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.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
authors = ["Ethan Pailes <pailes@google.com>"]
66
repository = "https://github.com/shell-pool/shpool"
@@ -18,7 +18,7 @@ rust-version = "1.74"
1818
[dependencies]
1919
clap = { version = "4", features = ["derive"] } # cli parsing
2020
anyhow = "1" # dynamic, unstructured errors
21-
libshpool = { version = "0.7.0", path = "../libshpool" }
21+
libshpool = { version = "0.7.1", path = "../libshpool" }
2222

2323
[dev-dependencies]
2424
lazy_static = "1" # globals

0 commit comments

Comments
 (0)