Skip to content

Commit 80e7101

Browse files
committed
Bump dispatch2 0.2.0 -> 0.3.0
1 parent 1498762 commit 80e7101

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ default.extend-words.lod = "lod"
8585
#
8686
# (this of course requires that the API we expose is similar enough that framework
8787
# crates themselves won't break in that version update. But that's the plan).
88-
dispatch2 = { path = "crates/dispatch2", version = ">=0.2.0, <0.4.0", default-features = false } # v0.2.0 or v0.3.*
88+
dispatch2 = { path = "crates/dispatch2", version = ">=0.3.0, <0.5.0", default-features = false } # v0.3.0 or v0.4.*
8989
block2 = { path = "crates/block2", version = ">=0.6.1, <0.8.0", default-features = false } # v0.6.1 or v0.7.*
9090
objc2 = { path = "crates/objc2", version = ">=0.6.1, <0.8.0", default-features = false } # v0.6.1 or v0.7.*
9191
# Use a reasonably new version of libc.

crates/dispatch2/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ 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.0 - 2025-04-19
11+
912
### Added
1013
- Allow `Queue::exec_sync` on workloops.
1114
This is discouraged for performance reasons, but doesn't need to be

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.2.0" # Remember to update html_root_url in lib.rs
2+
version = "0.3.0" # 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 <[email protected]>", "Mary <[email protected]>"]

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.2.0" # Remember to update html_root_url in lib.rs
6+
version = "0.3.0" # 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.2.0")]
26+
#![doc(html_root_url = "https://docs.rs/dispatch2/0.3.0")]
2727

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

0 commit comments

Comments
 (0)