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
4 changes: 2 additions & 2 deletions Cargo.lock

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

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

shpool (0.8.2) unstable; urgency=low

Fixed

* remove ansi color codes from logs (#202)
* reconnect hangup due to long session restore (#199)
* vterm width (#201)
* lints (#198)

Other

* update Cargo.lock dependencies
* differentiate error contexts (#200)
* upgrade notify crate (#190)

-- Shpool Authors <shpool-eng@google.com> Thu, 13 Feb 2025 20:04:17 +0000

shpool (0.8.1) unstable; urgency=low

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

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