Skip to content

Commit

Permalink
bump c-types (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimbleby authored Aug 2, 2024
1 parent 172cf8c commit 4534415
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 11.0.0 (2 Aug 2024)

- c-types 4.0.0
- breaking only because re-exported types are part of our interface

## 10.1.0 (3 July 2024)

- c-ares 1.32.0
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "c-ares"
license = "MIT"
version = "10.1.0"
version = "11.0.0"
authors = ["David Hotham"]
description = """
A Rust wrapper for the c-ares library, for asynchronous DNS requests.
Expand All @@ -25,15 +25,15 @@ features = ["vendored"]

[dependencies]
bitflags = "2.0"
c-ares-sys = { version = "9.5.0", path = "c-ares-sys", default-features = false }
c-types = "3.0.0"
c-ares-sys = { version = "10.0.0", path = "c-ares-sys", default-features = false }
c-types = "4.0.0"
itertools = "0.13"

[target.'cfg(unix)'.dev-dependencies]
nix = { version = "0.29", default-features = false, features = ["event"] }

[target.'cfg(windows)'.dev-dependencies]
windows-sys = { version = "0.52.0", features = ["Win32_Networking_WinSock"] }
windows-sys = { version = "0.59.0", features = ["Win32_Networking_WinSock"] }

[features]
default = ["maybe-vendored"]
Expand Down
5 changes: 5 additions & 0 deletions c-ares-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 10.0.0 (2 August 2024)

- c-types 4.0.0
- breaking only because re-exported types are part of our interface

## 9.6.0 (2 August 2024)

- c-ares 1.33.0
Expand Down
4 changes: 2 additions & 2 deletions c-ares-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "c-ares-sys"
license = "MIT"
version = "9.6.0"
version = "10.0.0"
authors = ["David Hotham"]
build = "build/main.rs"
links = "cares"
Expand Down Expand Up @@ -34,7 +34,7 @@ cmake = { version = "0.1", optional = true }

[dependencies]
libc = "0.2"
c-types = "3.0.0"
c-types = "4.0.0"

[target.'cfg(target_os = "android")'.dependencies]
jni-sys = "0.4"
Expand Down

0 comments on commit 4534415

Please sign in to comment.