From d10837b6e94012a90178848df8c5f8515476aaab Mon Sep 17 00:00:00 2001 From: Andreea Florescu Date: Fri, 29 Oct 2021 15:57:26 +0300 Subject: [PATCH] release v0.2.0 Full updates in the changelog. Signed-off-by: Andreea Florescu --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55d3aae..19303f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# v0.2.0 + +## Added +- [[#34](https://github.com/rust-vmm/vm-fdt/pull/34)] Implemented the `Error` + trait for the errors defined in vm-fdt. +- [[#41](https://github.com/rust-vmm/vm-fdt/pull/41)] The threat model + documentation is now available in the README.md. +- [[#37](https://github.com/rust-vmm/vm-fdt/issues/37)] Added + `property_phandle` which is checking values for uniqueness. + +## Fixed +- [[#32](https://github.com/rust-vmm/vm-fdt/issues/32)] Validate that node + names are following the specification. +- [[#46](https://github.com/rust-vmm/vm-fdt/pull/46)] Fix potential overflow + in `FdtWriter::begin_node()`. + # v0.1.0 This is the first release of vm-fdt. diff --git a/Cargo.toml b/Cargo.toml index 524d198..fa42433 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vm-fdt" -version = "0.1.0" +version = "0.2.0" description = "Crate for writing Flattened Devicetree blobs" authors = ["The Chromium OS Authors"] license = "Apache-2.0 OR BSD-3-Clause"