From 50e9c1fee5eb74e9e55ec4cbed156c6864c96079 Mon Sep 17 00:00:00 2001 From: Babis Chalios Date: Mon, 11 Mar 2024 09:07:04 +0000 Subject: [PATCH] Add CHANGELOG to the project Add a CHANGELOG to keep track of changes in the project. This follows the "keep a changelog" format [1], in same fashion as the rest of rust-vmm crates. [1] https://keepachangelog.com/en/1.1.0/ Signed-off-by: Babis Chalios --- CHANGELOG.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0448873 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog + +## Upcoming version + +### Added +### Changed +### Fixed + +- [[#44]](https://github.com/rust-vmm/vm-allocator/pull/44): Fixed issue that + did not allow the creating of inclusive ranges of size 1. + +### Removed +### Deprecated + +## [v0.1.0] + +### Added + +- Added types for (de)allocation of resources needed by the VMM during the VM + lifetime.