mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +00:00
chore: release v0.0.24
This commit is contained in:
parent
bf8a8379db
commit
d3fe2a066c
21
CHANGELOG.md
21
CHANGELOG.md
@ -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
12
Cargo.lock
generated
@ -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",
|
||||
|
@ -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"
|
||||
|
@ -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 }
|
||||
|
@ -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 }
|
||||
|
Loading…
Reference in New Issue
Block a user