From d5e62545c37aefd4ecf7c768e57908c81332203b Mon Sep 17 00:00:00 2001 From: "release-plz-for-shpool[bot]" <175248994+release-plz-for-shpool[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 20:39:42 +0000 Subject: [PATCH] chore: release v0.8.0 --- Cargo.lock | 4 ++-- debian/changelog | 14 ++++++++++++++ libshpool/Cargo.toml | 2 +- shpool/Cargo.toml | 4 ++-- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16869454..22afb16b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -505,7 +505,7 @@ dependencies = [ [[package]] name = "libshpool" -version = "0.7.1" +version = "0.8.0" dependencies = [ "anyhow", "assert_matches", @@ -910,7 +910,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "shpool" -version = "0.7.1" +version = "0.8.0" dependencies = [ "anyhow", "clap", diff --git a/debian/changelog b/debian/changelog index fbe6aacb..d3ad7d93 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,18 @@ +shpool (0.8.0) unstable; urgency=low + + Fixed + + * style + * handle dyn config updates to motd settings + * [**breaking**] exit success for graceful detaches + * deadlock when shell->client thread stops + * new lifetime lints + * add space to keybindings grammar + * suppress prompt sentinels from history + + -- Shpool Authors Mon, 14 Oct 2024 20:39:40 +0000 + shpool (0.7.1) unstable; urgency=low Added diff --git a/libshpool/Cargo.toml b/libshpool/Cargo.toml index 4c34df99..9c29180a 100644 --- a/libshpool/Cargo.toml +++ b/libshpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libshpool" -version = "0.7.1" +version = "0.8.0" edition = "2021" repository = "https://github.com/shell-pool/shpool" authors = ["Ethan Pailes "] diff --git a/shpool/Cargo.toml b/shpool/Cargo.toml index 5d663050..b3df91c8 100644 --- a/shpool/Cargo.toml +++ b/shpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shpool" -version = "0.7.1" +version = "0.8.0" edition = "2021" authors = ["Ethan Pailes "] repository = "https://github.com/shell-pool/shpool" @@ -18,7 +18,7 @@ rust-version = "1.74" [dependencies] clap = { version = "4", features = ["derive"] } # cli parsing anyhow = "1" # dynamic, unstructured errors -libshpool = { version = "0.7.1", path = "../libshpool" } +libshpool = { version = "0.8.0", path = "../libshpool" } [dev-dependencies] lazy_static = "1" # globals