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"] }