From cd6d5afba0d7e8fac676278664c51483dca35bed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Thu, 21 Mar 2024 12:18:14 +0100 Subject: [PATCH 1/2] Update CHANGES.md in preparation of v0.2.0 --- CHANGES.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 6de0f7b..1ed381d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,14 @@ +## v0.2.0 + +- BREAKING disconnect no longer disconnects the underlying block device and + instead marks the partition as disconnected. This does not propagate to + subpartitions (#9 @dianaoigo) +- BREAKING `connect` and `subpartition` no longer return pairs. Instead, + `connect` returns a partition representing the whole block device. + `subpartition` then takes labelled arguments `~start` and `~len`. While the + "split" semantics has some nice properties it does not fit very well with how + partitions are specified in partition tables (#13 @reynir) + ## v0.1.0 - Initial release From cb1b59b3f02bace291f57e6b861dfcc02dd070f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Thu, 21 Mar 2024 12:19:57 +0100 Subject: [PATCH 2/2] Add an entry about mirage-block-partition-mbr --- CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 1ed381d..b290918 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,8 @@ `subpartition` then takes labelled arguments `~start` and `~len`. While the "split" semantics has some nice properties it does not fit very well with how partitions are specified in partition tables (#13 @reynir) +- mirage-block-partition-mbr is simplified and no longer checks for overlapping + partitions. The module may be removed or revised in a future release. ## v0.1.0