diff --git a/CHANGELOG.md b/CHANGELOG.md index 77ed24e..c15e11d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Changelog -## v0.13.0 - unreleased +## v0.13.0 - 2024-08-23 - Add support for using environment variables to set all optional arguments of the `mtop`, `mc`, and `dns` binaries. #169 +- Fix an issue where hosts could be duplicated when resolved via `SRV` records. + #185 +- Fix an issue where `0` could be passed to various CLI flags where it did not + make sense, sometimes causing panics. #181 +- Change output format of `mc check` to group operation timings by type. #178 ## v0.12.1 - 2024-07-24 diff --git a/Cargo.lock b/Cargo.lock index 517fd78..854d083 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "mtop" -version = "0.12.1" +version = "0.13.0" dependencies = [ "clap", "crossterm", @@ -418,7 +418,7 @@ dependencies = [ [[package]] name = "mtop-client" -version = "0.12.1" +version = "0.13.0" dependencies = [ "byteorder", "pin-project-lite", diff --git a/mtop-client/Cargo.toml b/mtop-client/Cargo.toml index a033424..9295071 100644 --- a/mtop-client/Cargo.toml +++ b/mtop-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mtop-client" -version = "0.12.1" +version = "0.13.0" 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 424a125..d65c7a0 100644 --- a/mtop/Cargo.toml +++ b/mtop/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mtop" -version = "0.12.1" +version = "0.13.0" 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.12.1" } +mtop-client = { path = "../mtop-client", version = "0.13.0" } rand = "0.8.5" rand_distr = "0.4.3" rustls-pki-types = "1.7.0"