From 88f218179fa208e1524a4de5548c471959c7cc91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Feb 2025 19:40:29 +0000 Subject: [PATCH] chore(wavltree): release v0.0.6 --- Cargo.lock | 2 +- libs/ksharded-slab/Cargo.toml | 2 +- libs/ktest/macros/Cargo.toml | 2 +- libs/wavltree/CHANGELOG.md | 16 ++++++++++++++++ libs/wavltree/Cargo.toml | 2 +- 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d19673a6..3419e7e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1270,7 +1270,7 @@ dependencies = [ [[package]] name = "wavltree" -version = "0.0.5" +version = "0.0.6" dependencies = [ "criterion", "rand", diff --git a/libs/ksharded-slab/Cargo.toml b/libs/ksharded-slab/Cargo.toml index eb31a00f..ee7599f5 100644 --- a/libs/ksharded-slab/Cargo.toml +++ b/libs/ksharded-slab/Cargo.toml @@ -22,4 +22,4 @@ cpu-local.workspace = true loom = [] [lints] -workspace = true \ No newline at end of file +workspace = true diff --git a/libs/ktest/macros/Cargo.toml b/libs/ktest/macros/Cargo.toml index 66f03a2f..bc057f90 100644 --- a/libs/ktest/macros/Cargo.toml +++ b/libs/ktest/macros/Cargo.toml @@ -12,4 +12,4 @@ proc-macro = true [dependencies] proc-macro2.workspace = true quote.workspace = true -syn.workspace = true \ No newline at end of file +syn.workspace = true diff --git a/libs/wavltree/CHANGELOG.md b/libs/wavltree/CHANGELOG.md index e91838ef..0004d34b 100644 --- a/libs/wavltree/CHANGELOG.md +++ b/libs/wavltree/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/JonasKruckenberg/k23/compare/v0.0.5...v0.0.6) - 2025-02-15 + +### Added + +- user address space functionality (#246) +- integrate k23VM Wasm Engine (#224) + +### Fixed + +- reduce time spent on large allocations (#288) + +### Other + +- update rand crates ([#271](https://github.com/JonasKruckenberg/k23/pull/271)) +- upgrade deps ([#268](https://github.com/JonasKruckenberg/k23/pull/268)) + ## [0.0.5](https://github.com/JonasKruckenberg/k23/compare/v0.0.4...v0.0.5) - 2025-01-11 ### Other diff --git a/libs/wavltree/Cargo.toml b/libs/wavltree/Cargo.toml index d44f2ea0..6bddb640 100644 --- a/libs/wavltree/Cargo.toml +++ b/libs/wavltree/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wavltree" description = "An intrusive Weak AVL Tree." -version = "0.0.5" +version = "0.0.6" edition.workspace = true authors.workspace = true license.workspace = true