From 5604a93ef45185aa9683d4c0a9ab3daf9c0665da Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Sun, 24 Mar 2024 22:22:07 +0000 Subject: [PATCH] rel prep --- CHANGELOG.md | 14 +++++++++++++- Cargo.toml | 7 +++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7445c48..95705fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,19 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Removed -## [v0.4.1] - 2022-05-m3 +## [v0.4.2] + +### Added + +- Add `A1` type +- Make the `Alignment` trait public, but unimplementable +- Add some `Borrow`/`BorrowMut` trait impls + +### Changed + +### Removed + +## [v0.4.1] - 2022-05-30 ### Added diff --git a/Cargo.toml b/Cargo.toml index ba12ac8..810b824 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,13 @@ [package] -authors = ["Jorge Aparicio "] categories = ["embedded", "memory-management", "no-std"] description = "A newtype with alignment of at least `A` bytes" documentation = "https://docs.rs/aligned" -edition = "2018" +edition = "2021" keywords = ["alignment", "aligned", "array", "static"] license = "MIT OR Apache-2.0" name = "aligned" -repository = "https://github.com/japaric/aligned" -version = "0.4.1" +repository = "https://github.com/rust-embedded-community/aligned" +version = "0.4.2" [dependencies] as-slice = "0.2.0"