Skip to content

Commit

Permalink
Bump dispatch2 0.1.0 -> 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
madsmtm committed Jan 22, 2025
1 parent 3f5782e commit 44e4cde
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions crates/dispatch2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased - YYYY-MM-DD


## 0.2.0 - 2025-01-22

### Added
- Added support for `objc2` encodings.
- Added initial support for `block2`.
Expand Down
2 changes: 1 addition & 1 deletion crates/dispatch2/Cargo.modified.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.1.0" # Remember to update html_root_url in lib.rs
version = "0.2.0" # Remember to update html_root_url in lib.rs
description = "Bindings and wrappers for Apple's Grand Central Dispatch (GCD)"
keywords = ["gcd", "macos", "ios", "dispatch", "libdispatch"]
authors = ["Mads Marquart <mads@marquart.dk>", "Mary <mary@mary.zone>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/dispatch2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "dispatch2"
version = "0.1.0" # Remember to update html_root_url in lib.rs
version = "0.2.0" # Remember to update html_root_url in lib.rs
description = "Bindings and wrappers for Apple's Grand Central Dispatch (GCD)"
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/dispatch2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#![warn(clippy::undocumented_unsafe_blocks)]
#![warn(clippy::missing_safety_doc)]
// Update in Cargo.toml as well.
#![doc(html_root_url = "https://docs.rs/dispatch2/0.1.0")]
#![doc(html_root_url = "https://docs.rs/dispatch2/0.2.0")]

#[cfg(not(feature = "alloc"))]
compile_error!("The `alloc` feature currently must be enabled.");
Expand Down
2 changes: 1 addition & 1 deletion crates/header-translator/src/library.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ see that for related crates.", self.data.krate)?;
let mut table = match krate {
"dispatch2" => InlineTable::from_iter([
("path", Value::from(path)),
("version", Value::from("0.1.0")),
("version", Value::from("0.2.0")),
]),
"objc2" => InlineTable::from_iter([
("path", Value::from(path)),
Expand Down

0 comments on commit 44e4cde

Please sign in to comment.