Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.6.0 release #49

Merged
merged 2 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion system-configuration-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions system-configuration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"
Loading