From 922f88f390d2d14f07f8c2122204fcb3ce2afab8 Mon Sep 17 00:00:00 2001 From: Andrew Walbran Date: Fri, 16 Jun 2023 16:14:48 +0100 Subject: [PATCH] Prepare for 0.4.1 release. --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0734e4..fb2c943 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.4.1 + +### Bug fixes + +- `RootTable`, `Mapping`, `IdMap` and `LinearMap` are now correctly marked as `Send`, as it doesn't + matter where they are used from. + ## 0.4.0 ### Breaking changes diff --git a/Cargo.toml b/Cargo.toml index 0981ad0..ac9236e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aarch64-paging" -version = "0.4.0" +version = "0.4.1" edition = "2021" license = "MIT OR Apache-2.0" description = "A library to manipulate AArch64 VMSA EL1 page tables."