Skip to content

Commit

Permalink
Merge pull request #138 from 56quarters/version-bump
Browse files Browse the repository at this point in the history
Version bump for 0.10.0 release
  • Loading branch information
56quarters committed May 22, 2024
2 parents d182451 + 4e617cc commit 24675bb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Changelog

## v0.10.0 - unreleased
## v0.10.0 - 2024-05-21

- Add support for discovering hosts using DNS `SRV` records. #133 #131 #136
- Add support for reading DNS configuration from system `/etc/resolv.conf`
files. #134
- Add support for discovering hosts using DNS `SRV` records. #133 #131 #134 #136 #137
- Use a shorter TTL for entries written via `mc bench`. #130

## v0.9.0 - 2024-02-12
Expand Down
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.9.0"
version = "0.10.0"
authors = ["Nick Pillitteri"]
description = "Memcached client for mtop"
homepage = "https://github.com/56quarters/mtop"
Expand Down
1 change: 1 addition & 0 deletions mtop-client/src/dns/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ impl DnsClient {
}
}
}

async fn exchange(&self, msg: &Message, attempt: usize) -> Result<Message, MtopError> {
let server = self.nameserver(attempt);

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.9.0"
version = "0.10.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", features = ["cargo", "derive", "help", "error-context", "std", "string", "usage", "wrap_help"], default_features = false }
crossterm = "0.27.0"
mtop-client = { path = "../mtop-client", version = "0.9.0" }
mtop-client = { path = "../mtop-client", version = "0.10.0" }
rand = "0.8.5"
rand_distr = "0.4.3"
rustls-webpki = "0.102.0"
Expand Down

0 comments on commit 24675bb

Please sign in to comment.