diff --git a/Cargo.lock b/Cargo.lock index d593af065..fe3be18c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -181,7 +181,7 @@ dependencies = [ [[package]] name = "icrate" -version = "0.0.3" +version = "0.0.4" dependencies = [ "block2", "dispatch", diff --git a/crates/icrate/CHANGELOG.md b/crates/icrate/CHANGELOG.md index 6994b178b..1dda9ef6c 100644 --- a/crates/icrate/CHANGELOG.md +++ b/crates/icrate/CHANGELOG.md @@ -10,6 +10,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## icrate Unreleased - YYYY-MM-DD + +## icrate 0.0.4 - 2023-07-31 + ### Changed * **BREAKING**: Updated `block2` to `v0.3.0`. diff --git a/crates/icrate/Cargo.toml b/crates/icrate/Cargo.toml index cacad21c7..fd73df80d 100644 --- a/crates/icrate/Cargo.toml +++ b/crates/icrate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icrate" -version = "0.0.3" # Remember to update html_root_url in lib.rs +version = "0.0.4" # Remember to update html_root_url in lib.rs authors = ["Mads Marquart "] edition = "2021" rust-version = "1.60" diff --git a/crates/icrate/src/lib.rs b/crates/icrate/src/lib.rs index 4d06112f7..66b0d2dcd 100644 --- a/crates/icrate/src/lib.rs +++ b/crates/icrate/src/lib.rs @@ -21,7 +21,7 @@ #![allow(clippy::identity_op)] #![allow(clippy::missing_safety_doc)] // Update in Cargo.toml as well. -#![doc(html_root_url = "https://docs.rs/icrate/0.0.3")] +#![doc(html_root_url = "https://docs.rs/icrate/0.0.4")] #![recursion_limit = "512"] #[cfg(feature = "alloc")]