Skip to content

Commit

Permalink
Version bump for 0.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
56quarters committed Aug 24, 2024
1 parent 6ca6368 commit c68761e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
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.

2 changes: 1 addition & 1 deletion mtop-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions mtop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit c68761e

Please sign in to comment.