From e7e63532832ed1cf6278adfb5ba0bb825c727777 Mon Sep 17 00:00:00 2001 From: Jason White Date: Thu, 25 Jul 2024 11:40:35 -0700 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13a97cb..fdb2c41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v0.7.0 (WIP) + +⚠️ **Breaking Changes** ⚠️ + - `syscalls::raw::*` now take a `usize` instead of `Sysno` for the syscall + number. This allows bypassing `Sysno` if you need to invoke a syscall that is + not in the `Sysno` enum. To migrate existing code, you can cast any `Sysno` + type to a `usize` (e.g., `Sysno::openat as usize`). + ## v0.6.18 - Fixed build for ARMv4t and ARMv5te thumb mode.