Skip to content

Commit

Permalink
Merge branch 'prepare-0.5.1-release'
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed May 16, 2023
2 parents 5df2d06 + 86f17c5 commit 56e415e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,19 @@ Line wrap the file at 100 chars. Th


## [Unreleased]


## [0.5.1] - 2023-05-15
### Added
- Add bindings for `SCNetworkSet` and `SCNetworkService`


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


## [0.4.1] - 2020-06-04
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.4.1"
version = "0.5.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.4.0"
version = "0.5.1"
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.4" }
system-configuration-sys = { path = "../system-configuration-sys", version = "0.5" }
bitflags = "1"
2 changes: 2 additions & 0 deletions system-configuration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@

#![deny(missing_docs)]

/// CoreFoundation wrappers
#[macro_use]
pub extern crate core_foundation;
/// Low-level SystemConfiguration bindings
pub extern crate system_configuration_sys as sys;

pub mod dynamic_store;
Expand Down

0 comments on commit 56e415e

Please sign in to comment.