From 25f08cf73a55ee8878b76fb7de1859da1fad8bdc Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Sun, 24 Mar 2024 22:23:57 +0000 Subject: [PATCH] rel prep (#20) --- CHANGELOG.md | 14 +++++++++++++- Cargo.toml | 7 +++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7445c48..f7ed5fc 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] - 2024-03-24 + +### 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"