From b9559525c6950f030b8be21a280a331f277f9232 Mon Sep 17 00:00:00 2001 From: "edera-cultivation[bot]" <165992271+edera-cultivation[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 23:37:45 -0400 Subject: [PATCH] chore: release (#386) Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com> --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- crates/xen/xenclient/Cargo.toml | 6 +++--- crates/xen/xenplatform/Cargo.toml | 2 +- 5 files changed, 26 insertions(+), 11 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..cb1327ad --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.22](https://github.com/edera-dev/krata/compare/v0.0.21...v0.0.22) - 2024-09-16 + +### Other + +- update Cargo.toml dependencies +- preparations for xen control-plane diff --git a/Cargo.lock b/Cargo.lock index 99956602..c3025000 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -282,7 +282,7 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "krata-xencall" -version = "0.0.21" +version = "0.0.22" dependencies = [ "env_logger", "libc", @@ -295,7 +295,7 @@ dependencies = [ [[package]] name = "krata-xenclient" -version = "0.0.21" +version = "0.0.22" dependencies = [ "async-trait", "env_logger", @@ -313,7 +313,7 @@ dependencies = [ [[package]] name = "krata-xenevtchn" -version = "0.0.21" +version = "0.0.22" dependencies = [ "byteorder", "libc", @@ -325,7 +325,7 @@ dependencies = [ [[package]] name = "krata-xengnt" -version = "0.0.21" +version = "0.0.22" dependencies = [ "libc", "nix", @@ -334,7 +334,7 @@ dependencies = [ [[package]] name = "krata-xenplatform" -version = "0.0.21" +version = "0.0.22" dependencies = [ "async-trait", "c2rust-bitfields", @@ -357,7 +357,7 @@ dependencies = [ [[package]] name = "krata-xenstore" -version = "0.0.21" +version = "0.0.22" dependencies = [ "byteorder", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 787471a3..844cbd2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.0.21" +version = "0.0.22" 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 33148cdb..28b67966 100644 --- a/crates/xen/xenclient/Cargo.toml +++ b/crates/xen/xenclient/Cargo.toml @@ -13,9 +13,9 @@ async-trait = { workspace = true } indexmap = { workspace = true } libc = { workspace = true } log = { workspace = true } -krata-xencall = { path = "../xencall", version = "^0.0.21" } -krata-xenplatform = { path = "../xenplatform", version = "^0.0.21" } -krata-xenstore = { path = "../xenstore", version = "^0.0.21" } +krata-xencall = { path = "../xencall", version = "^0.0.22" } +krata-xenplatform = { path = "../xenplatform", version = "^0.0.22" } +krata-xenstore = { path = "../xenstore", version = "^0.0.22" } regex = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } diff --git a/crates/xen/xenplatform/Cargo.toml b/crates/xen/xenplatform/Cargo.toml index 0467f133..49edeaec 100644 --- a/crates/xen/xenplatform/Cargo.toml +++ b/crates/xen/xenplatform/Cargo.toml @@ -16,7 +16,7 @@ flate2 = { workspace = true } indexmap = { workspace = true } libc = { workspace = true } log = { workspace = true } -krata-xencall = { path = "../xencall", version = "^0.0.21" } +krata-xencall = { path = "../xencall", version = "^0.0.22" } memchr = { workspace = true } nix = { workspace = true } regex = { workspace = true }