diff --git a/CHANGELOG.md b/CHANGELOG.md index 23ca9a4..72d69f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8] - 2024-07-07 + ### Changed - return type of `zeroed()` from `impl Init` to `impl Init` (also removing the generic @@ -50,5 +52,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.0.6] - 2023-04-08 [unreleased]: https://github.com/Rust-for-Linux/pinned-init/compare/v0.0.7...HEAD +[0.0.8]: https://github.com/Rust-for-Linux/pinned-init/compare/v0.0.7...v0.0.8 [0.0.7]: https://github.com/Rust-for-Linux/pinned-init/compare/v0.0.6...v0.0.7 [0.0.6]: https://github.com/Rust-for-Linux/pinned-init/releases/tag/v0.0.6 diff --git a/Cargo.lock b/Cargo.lock index 5d5f51d..0fef224 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -99,7 +99,7 @@ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "pinned-init" -version = "0.0.7" +version = "0.0.8" dependencies = [ "libc", "macrotest", diff --git a/Cargo.toml b/Cargo.toml index da80711..3d003ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pinned-init" -version = "0.0.7" +version = "0.0.8" edition = "2021" authors = ["y86-dev"]