Skip to content

Commit 6780851

Browse files
committed
Bump dispatch2 0.3.0 -> 0.3.1
1 parent ad96317 commit 6780851

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dispatch2/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## Unreleased - YYYY-MM-DD
88

9+
10+
## [0.3.1] - 2025-04-19
11+
[0.3.1]: https://github.com/madsmtm/objc2/compare/dispatch2-0.3.0...dispatch2-0.3.1
12+
913
### Fixed
1014
- Fixed reference counting in `DispatchSemaphoreGuard::release`.
1115
- Inlined more functions. This should allow using this library on macOS 10.12 with `crate-type = ["dylib"]`.

crates/dispatch2/Cargo.modified.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
version = "0.3.0" # Remember to update html_root_url in lib.rs
2+
version = "0.3.1" # Remember to update html_root_url in lib.rs
33
description = "Bindings and wrappers for Apple's Grand Central Dispatch (GCD)"
44
keywords = ["gcd", "macos", "ios", "dispatch", "libdispatch"]
55
authors = ["Mads Marquart <mads@marquart.dk>", "Mary <mary@mary.zone>"]

crates/dispatch2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "dispatch2"
6-
version = "0.3.0" # Remember to update html_root_url in lib.rs
6+
version = "0.3.1" # Remember to update html_root_url in lib.rs
77
description = "Bindings and wrappers for Apple's Grand Central Dispatch (GCD)"
88
edition.workspace = true
99
rust-version.workspace = true

crates/dispatch2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#![warn(clippy::undocumented_unsafe_blocks)]
2424
#![warn(clippy::missing_safety_doc)]
2525
// Update in Cargo.toml as well.
26-
#![doc(html_root_url = "https://docs.rs/dispatch2/0.3.0")]
26+
#![doc(html_root_url = "https://docs.rs/dispatch2/0.3.1")]
2727

2828
#[cfg(not(feature = "alloc"))]
2929
compile_error!("The `alloc` feature currently must be enabled.");

0 commit comments

Comments
 (0)