Skip to content

Commit

Permalink
chore: release (#202)
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] authored Jul 12, 2024
1 parent 4ef466c commit 07cceed
Show file tree
Hide file tree
Showing 11 changed files with 55 additions and 37 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.12](https://github.com/edera-dev/krata/compare/v0.0.11...v0.0.12) - 2024-07-12

### Added
- *(oci)* add configuration value for oci seed file ([#220](https://github.com/edera-dev/krata/pull/220))
- *(power-management-defaults)* set an initial power management policy ([#219](https://github.com/edera-dev/krata/pull/219))

### Fixed
- *(daemon)* decrease rate of runtime reconcile ([#224](https://github.com/edera-dev/krata/pull/224))
- *(power)* ensure that xeon cpus with cpu gaps are not detected as p/e compatible ([#218](https://github.com/edera-dev/krata/pull/218))
- *(runtime)* use iommu only if devices are needed ([#243](https://github.com/edera-dev/krata/pull/243))

### Other
- Power management core functionality ([#217](https://github.com/edera-dev/krata/pull/217))
- *(powermgmt)* disable for now as a hackfix ([#242](https://github.com/edera-dev/krata/pull/242))
- Initial fluentd support ([#205](https://github.com/edera-dev/krata/pull/205))
- update Cargo.toml dependencies
- Use native loopdev implementation instead of loopdev-3 ([#209](https://github.com/edera-dev/krata/pull/209))

## [0.0.11](https://github.com/edera-dev/krata/compare/v0.0.10...v0.0.11) - 2024-06-23

### Added
Expand Down
30 changes: 15 additions & 15 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 @@ -18,7 +18,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.0.11"
version = "0.0.12"
homepage = "https://krata.dev"
license = "Apache-2.0"
repository = "https://github.com/edera-dev/krata"
Expand Down
2 changes: 1 addition & 1 deletion crates/build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ oci-spec = { workspace = true }
scopeguard = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
krata-oci = { path = "../oci", version = "^0.0.11" }
krata-oci = { path = "../oci", version = "^0.0.12" }
krata-tokio-tar = { workspace = true }
uuid = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/ctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env_logger = { workspace = true }
fancy-duration = { workspace = true }
human_bytes = { workspace = true }
indicatif = { workspace = true }
krata = { path = "../krata", version = "^0.0.11" }
krata = { path = "../krata", version = "^0.0.12" }
log = { workspace = true }
prost-reflect = { workspace = true, features = ["serde"] }
prost-types = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ circular-buffer = { workspace = true }
clap = { workspace = true }
env_logger = { workspace = true }
futures = { workspace = true }
krata = { path = "../krata", version = "^0.0.11" }
krata-oci = { path = "../oci", version = "^0.0.11" }
krata-runtime = { path = "../runtime", version = "^0.0.11" }
krata = { path = "../krata", version = "^0.0.12" }
krata-oci = { path = "../oci", version = "^0.0.12" }
krata-runtime = { path = "../runtime", version = "^0.0.12" }
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.11" }
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.11" }
krata = { path = "../krata", version = "^0.0.12" }
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.12" }
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.11" }
krata = { path = "../krata", version = "^0.0.12" }
krata-advmac = { workspace = true }
libc = { workspace = true }
log = { workspace = true }
Expand Down
18 changes: 9 additions & 9 deletions crates/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ resolver = "2"
anyhow = { workspace = true }
backhand = { workspace = true }
ipnetwork = { workspace = true }
krata = { path = "../krata", version = "^0.0.11" }
krata = { path = "../krata", version = "^0.0.12" }
krata-advmac = { workspace = true }
krata-oci = { path = "../oci", version = "^0.0.11" }
krata-oci = { path = "../oci", version = "^0.0.12" }
log = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
uuid = { workspace = true }
krata-loopdev = { path = "../loopdev", version = "^0.0.11" }
krata-xencall = { path = "../xen/xencall", version = "^0.0.11" }
krata-xenclient = { path = "../xen/xenclient", version = "^0.0.11" }
krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.11" }
krata-xengnt = { path = "../xen/xengnt", version = "^0.0.11" }
krata-xenplatform = { path = "../xen/xenplatform", version = "^0.0.11" }
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.11" }
krata-loopdev = { path = "../loopdev", version = "^0.0.12" }
krata-xencall = { path = "../xen/xencall", version = "^0.0.12" }
krata-xenclient = { path = "../xen/xenclient", version = "^0.0.12" }
krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.12" }
krata-xengnt = { path = "../xen/xengnt", version = "^0.0.12" }
krata-xenplatform = { path = "../xen/xenplatform", version = "^0.0.12" }
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.12" }
walkdir = { workspace = true }
indexmap = { workspace = true }

Expand Down
6 changes: 3 additions & 3 deletions crates/xen/xenclient/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ async-trait = { workspace = true }
indexmap = { workspace = true }
libc = { workspace = true }
log = { workspace = true }
krata-xencall = { path = "../xencall", version = "^0.0.11" }
krata-xenplatform = { path = "../xenplatform", version = "^0.0.11" }
krata-xenstore = { path = "../xenstore", version = "^0.0.11" }
krata-xencall = { path = "../xencall", version = "^0.0.12" }
krata-xenplatform = { path = "../xenplatform", version = "^0.0.12" }
krata-xenstore = { path = "../xenstore", version = "^0.0.12" }
regex = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/xen/xenplatform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ flate2 = { workspace = true }
indexmap = { workspace = true }
libc = { workspace = true }
log = { workspace = true }
krata-xencall = { path = "../xencall", version = "^0.0.11" }
krata-xencall = { path = "../xencall", version = "^0.0.12" }
memchr = { workspace = true }
nix = { workspace = true }
regex = { workspace = true }
Expand Down

0 comments on commit 07cceed

Please sign in to comment.