diff --git a/CHANGELOG.md b/CHANGELOG.md index fffc086..1887f92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ Line wrap the file at 100 chars. Th ## [Unreleased] + +## [0.6.0] - 2024-01-31 ### Changed - Bump minimum supported Rust version (MSRV) to 1.64.0. - Breaking: Mark `SCNetworkReachability::schedule_with_runloop` and `unschedule_from_runloop` as @@ -32,6 +34,9 @@ Line wrap the file at 100 chars. Th ### Fixed - Fix memory leak in `SCNetworkReachability::set_callback`. +- Fix builds on iOS by removing references to deprecated interface type + `kSCNetworkInterfaceTypeIrDA`. Also remove constant for bridge network interfaces + (`kSCNetworkInterfaceTypeBridge`). ## [0.5.1] - 2023-05-15 diff --git a/system-configuration-sys/Cargo.toml b/system-configuration-sys/Cargo.toml index 2431b13..c1e757f 100644 --- a/system-configuration-sys/Cargo.toml +++ b/system-configuration-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "system-configuration-sys" -version = "0.5.0" +version = "0.6.0" authors = ["Mullvad VPN"] description = "Low level bindings to SystemConfiguration framework for macOS" keywords = ["macos", "system", "configuration", "bindings"] diff --git a/system-configuration/Cargo.toml b/system-configuration/Cargo.toml index 3760f52..92cc051 100644 --- a/system-configuration/Cargo.toml +++ b/system-configuration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "system-configuration" -version = "0.5.1" +version = "0.6.0" authors = ["Mullvad VPN"] description = "Bindings to SystemConfiguration framework for macOS" keywords = ["macos", "system", "configuration", "bindings"] @@ -12,5 +12,5 @@ edition = "2021" [dependencies] core-foundation = "0.9" -system-configuration-sys = { path = "../system-configuration-sys", version = "0.5" } +system-configuration-sys = { path = "../system-configuration-sys", version = "0.6" } bitflags = "2"