Skip to content

Commit 6b4f30c

Browse files
alexandruagandreeaflorescu
authored andcommitted
release v0.2.2
Updated changelog and Cargo.toml version. Dropped coverage by 0.1, because the CI complains even though the previous commit adds more test operations than new code. Signed-off-by: Alexandru Agache <[email protected]>
1 parent 45f5bc4 commit 6b4f30c

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
1-
# [v0.2.1]
1+
# Changelog
22

3-
## Fixed
3+
## [v0.2.2]
4+
5+
### Fixed
6+
- [[#106]](https://github.com/rust-vmm/vm-memory/issues/106): Asserts trigger
7+
on zero-length access.
8+
9+
## [v0.2.1]
10+
11+
### Fixed
412
- [[#93]](https://github.com/rust-vmm/vm-memory/issues/93): Avoid torn writes
513
with memcpy.
614

7-
# [v0.2.0]
15+
## [v0.2.0]
816

9-
## Added
17+
### Added
1018

1119
- [[#76]](https://github.com/rust-vmm/vm-memory/issues/76): Added `get_slice` and
1220
`as_volatile_slice` to `GuestMemoryRegion`.
@@ -16,9 +24,9 @@
1624
`ByteValued` which can be used for reading into POD structures from
1725
raw bytes.
1826

19-
# [v0.1.0]
27+
## [v0.1.0]
2028

21-
## Added
29+
### Added
2230

2331
- Added traits for working with VM memory.
2432
- Added a mmap based implemention for the Guest Memory.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vm-memory"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "Safe abstractions for accessing the VM physical memory"
55
keywords = ["memory"]
66
authors = ["Liu Jiang <[email protected]>"]

coverage_config_aarch64.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"coverage_score": 86.1,
2+
"coverage_score": 86,
33
"exclude_path": "mmap_windows.rs",
44
"crate_features": "backend-mmap,backend-atomic"
55
}

coverage_config_x86_64.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"coverage_score": 86.1,
2+
"coverage_score": 86,
33
"exclude_path": "mmap_windows.rs",
44
"crate_features": "backend-mmap,backend-atomic"
55
}

0 commit comments

Comments
 (0)