Skip to content

Commit

Permalink
chore: release (#39)
Browse files Browse the repository at this point in the history
Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>
  • Loading branch information
edera-cultivation[bot] committed Apr 9, 2024
1 parent 7cfdb27 commit 6050e99
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 27 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.8](https://github.com/edera-dev/krata/compare/v0.0.7...v0.0.8) - 2024-04-09

### Other
- update Cargo.lock dependencies

## [0.0.7](https://github.com/edera-dev/krata/compare/v0.0.6...v0.0.7) - 2024-04-09

### Other
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.0.7"
version = "0.0.8"
homepage = "https://krata.dev"
license = "Apache-2.0"
repository = "https://github.com/edera-dev/krata"
Expand Down
2 changes: 1 addition & 1 deletion crates/ctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ comfy-table = { workspace = true }
crossterm = { workspace = true }
ctrlc = { workspace = true, features = ["termination"] }
env_logger = { workspace = true }
krata = { path = "../krata", version = "^0.0.7" }
krata = { path = "../krata", version = "^0.0.8" }
log = { workspace = true }
prost-reflect = { workspace = true, features = ["serde"] }
serde_json = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ circular-buffer = { workspace = true }
clap = { workspace = true }
env_logger = { workspace = true }
futures = { workspace = true }
krata = { path = "../krata", version = "^0.0.7" }
krata-runtime = { path = "../runtime", version = "^0.0.7" }
krata = { path = "../krata", version = "^0.0.8" }
krata-runtime = { path = "../runtime", version = "^0.0.8" }
log = { workspace = true }
prost = { workspace = true }
redb = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ cgroups-rs = { workspace = true }
env_logger = { workspace = true }
futures = { workspace = true }
ipnetwork = { workspace = true }
krata = { path = "../krata", version = "^0.0.7" }
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.7" }
krata = { path = "../krata", version = "^0.0.8" }
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.8" }
libc = { workspace = true }
log = { workspace = true }
nix = { workspace = true, features = ["ioctl", "process", "fs"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ clap = { workspace = true }
env_logger = { workspace = true }
etherparse = { workspace = true }
futures = { workspace = true }
krata = { path = "../krata", version = "^0.0.7" }
krata = { path = "../krata", version = "^0.0.8" }
krata-advmac = { workspace = true }
libc = { workspace = true }
log = { workspace = true }
Expand Down
12 changes: 6 additions & 6 deletions crates/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ resolver = "2"
anyhow = { workspace = true }
backhand = { workspace = true }
ipnetwork = { workspace = true }
krata = { path = "../krata", version = "^0.0.7" }
krata = { path = "../krata", version = "^0.0.8" }
krata-advmac = { workspace = true }
krata-oci = { path = "../oci", version = "^0.0.7" }
krata-oci = { path = "../oci", version = "^0.0.8" }
log = { workspace = true }
loopdev-3 = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
uuid = { workspace = true }
krata-xenclient = { path = "../xen/xenclient", version = "^0.0.7" }
krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.7" }
krata-xengnt = { path = "../xen/xengnt", version = "^0.0.7" }
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.7" }
krata-xenclient = { path = "../xen/xenclient", version = "^0.0.8" }
krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.8" }
krata-xengnt = { path = "../xen/xengnt", version = "^0.0.8" }
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.8" }

[lib]
name = "kratart"
Expand Down
4 changes: 2 additions & 2 deletions crates/xen/xenclient/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ elf = { workspace = true }
flate2 = { workspace = true }
libc = { workspace = true }
log = { workspace = true }
krata-xencall = { path = "../xencall", version = "^0.0.7" }
krata-xenstore = { path = "../xenstore", version = "^0.0.7" }
krata-xencall = { path = "../xencall", version = "^0.0.8" }
krata-xenstore = { path = "../xenstore", version = "^0.0.8" }
memchr = { workspace = true }
nix = { workspace = true }
slice-copy = { workspace = true }
Expand Down

0 comments on commit 6050e99

Please sign in to comment.