From 2aaaa63382706325ebada637c18d2c4afab98411 Mon Sep 17 00:00:00 2001 From: James Curtis Date: Wed, 3 Jun 2026 11:22:37 +0000 Subject: [PATCH] chore: prepare v0.1.4 release Bump the crate version and add new unreleased section to changelog. Signed-off-by: James Curtis --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8623fd5..1471fd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Upcoming version +### Added +### Changed +### Fixed +### Removed +### Deprecated + +## [v0.1.4] + ### Added - Support for no_std environments. diff --git a/Cargo.toml b/Cargo.toml index d363de7..3329a81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vm-allocator" -version = "0.1.3" +version = "0.1.4" description = "Helpers for allocating resources needed during the lifetime of a VM." repository = "https://github.com/rust-vmm/vm-allocator" authors = ["rust-vmm AWS maintainers "] @@ -15,5 +15,5 @@ std = [] [dependencies] libc = "0.2.39" -thiserror = {version= "2.0", default-features = false} +thiserror = { version = "2.0", default-features = false } serde = { version = "1.0.137", optional = true, features = ["derive"] }