chore: release v0.0.24 (#388)

Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>
This commit is contained in:
edera-cultivation[bot] 2024-12-14 18:53:21 -05:00 committed by GitHub
parent bf8a8379db
commit b7dd2b8d89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 32 additions and 11 deletions

View File

@ -7,6 +7,27 @@ 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)* examples should use supported platform
- *(xenclient)* boot example should use unsupported platform on aarch64
- *(xenplatform)* e820 sanitize should now produce valid mappings
- *(xenplatform)* use cfg attributes for returning supported platforms
### 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

12
Cargo.lock generated
View File

@ -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",

View File

@ -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"

View File

@ -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 }

View File

@ -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 }