diff --git a/CHANGELOG.md b/CHANGELOG.md index c5f527e28..f0172bf1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 9.1.0 (24 May 2024) + +- c-ares 1.29.0 + ## 9.0.0 (23 February 2024) - cares 1.27.0 diff --git a/Cargo.toml b/Cargo.toml index e5a521b00..c3e8dd1ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "c-ares" license = "MIT" -version = "9.0.0" +version = "9.1.0" authors = ["David Hotham"] description = """ A Rust wrapper for the c-ares library, for asynchronous DNS requests. @@ -22,12 +22,12 @@ include = [ [dependencies] bitflags = "2.0" -c-ares-sys = { version = "9.0.0", path = "c-ares-sys", default-features = false } +c-ares-sys = { version = "9.2.0", path = "c-ares-sys", default-features = false } c-types = "3.0.0" -itertools = "0.12" +itertools = "0.13" [target.'cfg(unix)'.dev-dependencies] -nix = { version = "0.28", default-features = false, features = ["event"] } +nix = { version = "0.29", default-features = false, features = ["event"] } [target.'cfg(windows)'.dev-dependencies] windows-sys = { version = "0.52.0", features = ["Win32_Networking_WinSock"] }