Skip to content

Commit 56e415e

Browse files
committed
Merge branch 'prepare-0.5.1-release'
2 parents 5df2d06 + 86f17c5 commit 56e415e

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,19 @@ Line wrap the file at 100 chars. Th
2222

2323

2424
## [Unreleased]
25+
26+
27+
## [0.5.1] - 2023-05-15
2528
### Added
2629
- Add bindings for `SCNetworkSet` and `SCNetworkService`
2730

31+
32+
## [0.5.0] - 2022-01-03
2833
### Changed
29-
- Bump minimum supported Rust version to 1.56.0
34+
- Upgrade crates to Rust 2021 edition.
35+
- Bump minimum supported Rust version (MSRV) to 1.56.0.
36+
- Upgrade core-foundation to 0.9 and core-foundation-sys to 0.8. This is a breaking
37+
change since those crates are publicly re-exported from these crates.
3038

3139

3240
## [0.4.1] - 2020-06-04

system-configuration-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "system-configuration-sys"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Mullvad VPN"]
55
description = "Low level bindings to SystemConfiguration framework for macOS"
66
keywords = ["macos", "system", "configuration", "bindings"]

system-configuration/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "system-configuration"
3-
version = "0.4.0"
3+
version = "0.5.1"
44
authors = ["Mullvad VPN"]
55
description = "Bindings to SystemConfiguration framework for macOS"
66
keywords = ["macos", "system", "configuration", "bindings"]
@@ -12,5 +12,5 @@ edition = "2021"
1212

1313
[dependencies]
1414
core-foundation = "0.9"
15-
system-configuration-sys = { path = "../system-configuration-sys", version = "0.4" }
15+
system-configuration-sys = { path = "../system-configuration-sys", version = "0.5" }
1616
bitflags = "1"

system-configuration/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@
1919
2020
#![deny(missing_docs)]
2121

22+
/// CoreFoundation wrappers
2223
#[macro_use]
2324
pub extern crate core_foundation;
25+
/// Low-level SystemConfiguration bindings
2426
pub extern crate system_configuration_sys as sys;
2527

2628
pub mod dynamic_store;

0 commit comments

Comments
 (0)