diff --git a/CHANGELOG.md b/CHANGELOG.md index c15e11d..9010376 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.13.1 - 2024-10-26 + +- Fix an issue where a DNS TCP buffer was incorrectly reused resulting in corrupt messages. #189 + ## v0.13.0 - 2024-08-23 - Add support for using environment variables to set all optional arguments diff --git a/Cargo.lock b/Cargo.lock index 854d083..e2b0373 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "mtop" -version = "0.13.0" +version = "0.13.1" dependencies = [ "clap", "crossterm", @@ -418,7 +418,7 @@ dependencies = [ [[package]] name = "mtop-client" -version = "0.13.0" +version = "0.13.1" dependencies = [ "byteorder", "pin-project-lite", diff --git a/mtop-client/Cargo.toml b/mtop-client/Cargo.toml index 9295071..7c36a1e 100644 --- a/mtop-client/Cargo.toml +++ b/mtop-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mtop-client" -version = "0.13.0" +version = "0.13.1" authors = ["Nick Pillitteri"] description = "Memcached client for mtop" homepage = "https://github.com/56quarters/mtop" diff --git a/mtop/Cargo.toml b/mtop/Cargo.toml index d65c7a0..d6bb1cf 100644 --- a/mtop/Cargo.toml +++ b/mtop/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mtop" -version = "0.13.0" +version = "0.13.1" authors = ["Nick Pillitteri"] description = "mtop: top for Memcached" homepage = "https://github.com/56quarters/mtop" @@ -13,7 +13,7 @@ edition = "2021" [dependencies] clap = { version = "4.1.8", default-features = false, features = ["cargo", "derive", "env", "help", "error-context", "std", "string", "usage", "wrap_help"] } crossterm = "0.27.0" -mtop-client = { path = "../mtop-client", version = "0.13.0" } +mtop-client = { path = "../mtop-client", version = "0.13.1" } rand = "0.8.5" rand_distr = "0.4.3" rustls-pki-types = "1.7.0"