Skip to content

Commit

Permalink
Merge pull request #167 from 56quarters/version-bump
Browse files Browse the repository at this point in the history
Version bump and changelog for 0.12.0
  • Loading branch information
56quarters authored Jul 24, 2024
2 parents 29d8d96 + 03729b7 commit a5e3f8f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## v0.12.0 - 2024-07-24

- Document architecture and limitations of internal DNS resolver. #166
- Fix a bug where hostnames were not fully qualified when encoded by
`dns write`. #162
- Validate the response to a connection tests to ensure we're talking to a
Memcached server. #161
- Don't attempt to resolve Memcached hostnames without special prefixes. #159
- Add `--nameserver` flag to `dns` binary to allow setting a server
directly. #158
- Gracefully handle `SIGINT` in `mc` and `dns` binaries. #158
- Close Memcached connections when the last request resulted in an error. #156
- Ensure newly introduced `trace` logging doesn't break the terminal UI. #152

## v0.11.0 - 2024-06-24

- Add `dns ping` subcommand to `dns` binary to repeatedly perform DNS queries. #149
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.11.0"
version = "0.12.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.11.0"
version = "0.12.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", "help", "error-context", "std", "string", "usage", "wrap_help"] }
crossterm = "0.27.0"
mtop-client = { path = "../mtop-client", version = "0.11.0" }
mtop-client = { path = "../mtop-client", version = "0.12.0" }
rand = "0.8.5"
rand_distr = "0.4.3"
rustls-pki-types = "1.7.0"
Expand Down

0 comments on commit a5e3f8f

Please sign in to comment.