From 5063d9545a0dc6693961ef7d8626701a2cfdd98a Mon Sep 17 00:00:00 2001 From: "edera-cultivation[bot]" <165992271+edera-cultivation[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 23:24:49 +0000 Subject: [PATCH] chore: release v0.0.24 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- crates/xen/xenclient/Cargo.toml | 6 +++--- crates/xen/xenplatform/Cargo.toml | 2 +- 5 files changed, 30 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dd6313f..640a627e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.24](https://github.com/edera-dev/krata/compare/v0.0.23...v0.0.24) - 2024-12-14 + +### Added + +- *(xen)* update xenclient and xenplatform to the latest structure (#433) +- *(xencall)* improve asynchronous support (#430) +- *(evtchn)* harden evtchn handling and improve api (#431) +- *(xenstore)* multi-watch and maybe-commit support (#429) + +### Fixed + +- *(xenclient)* boot example should use unsupported platform on aarch64 +- *(xenplatform)* e820 sanitize should now produce valid mappings + +### Other + +- *(deps)* upgrade dependencies and clean code (#432) +- update Cargo.toml dependencies + ## [0.0.23](https://github.com/edera-dev/krata/compare/v0.0.22...v0.0.23) - 2024-09-17 ### Other diff --git a/Cargo.lock b/Cargo.lock index 67156e3e..852c66e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -259,7 +259,7 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "krata-xencall" -version = "0.0.23" +version = "0.0.24" dependencies = [ "env_logger", "libc", @@ -271,7 +271,7 @@ dependencies = [ [[package]] name = "krata-xenclient" -version = "0.0.23" +version = "0.0.24" dependencies = [ "async-trait", "bit-vec", @@ -289,7 +289,7 @@ dependencies = [ [[package]] name = "krata-xenevtchn" -version = "0.0.23" +version = "0.0.24" dependencies = [ "byteorder", "libc", @@ -301,7 +301,7 @@ dependencies = [ [[package]] name = "krata-xengnt" -version = "0.0.23" +version = "0.0.24" dependencies = [ "libc", "nix", @@ -310,7 +310,7 @@ dependencies = [ [[package]] name = "krata-xenplatform" -version = "0.0.23" +version = "0.0.24" dependencies = [ "async-trait", "elf", @@ -330,7 +330,7 @@ dependencies = [ [[package]] name = "krata-xenstore" -version = "0.0.23" +version = "0.0.24" dependencies = [ "byteorder", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 97edec05..2571910f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.0.23" +version = "0.0.24" homepage = "https://krata.dev" license = "GPL-2.0-or-later" repository = "https://github.com/edera-dev/krata" diff --git a/crates/xen/xenclient/Cargo.toml b/crates/xen/xenclient/Cargo.toml index 8c255e5f..aba25872 100644 --- a/crates/xen/xenclient/Cargo.toml +++ b/crates/xen/xenclient/Cargo.toml @@ -13,9 +13,9 @@ async-trait = { workspace = true } bit-vec = { workspace = true } indexmap = { workspace = true } log = { workspace = true } -krata-xencall = { path = "../xencall", version = "^0.0.23" } -krata-xenplatform = { path = "../xenplatform", version = "^0.0.23" } -krata-xenstore = { path = "../xenstore", version = "^0.0.23" } +krata-xencall = { path = "../xencall", version = "^0.0.24" } +krata-xenplatform = { path = "../xenplatform", version = "^0.0.24" } +krata-xenstore = { path = "../xenstore", version = "^0.0.24" } regex = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } diff --git a/crates/xen/xenplatform/Cargo.toml b/crates/xen/xenplatform/Cargo.toml index b4089404..86d4522d 100644 --- a/crates/xen/xenplatform/Cargo.toml +++ b/crates/xen/xenplatform/Cargo.toml @@ -14,7 +14,7 @@ elf = { workspace = true } flate2 = { workspace = true } libc = { workspace = true } log = { workspace = true } -krata-xencall = { path = "../xencall", version = "^0.0.23" } +krata-xencall = { path = "../xencall", version = "^0.0.24" } memchr = { workspace = true } nix = { workspace = true } regex = { workspace = true }