diff --git a/NEWS b/NEWS index 88c72b2..553e4d1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +1.0.4 (?/??/2018): +------------------ + +- Added type code for Apple APFS (7C3457EF-0000-11AA-AA11-00306543ECAC, + 0xaf0a). + +- Changed "Creating new GPT entries" message to read "Creating new + GPT entries in memory" because the latter is clearer, particularly when + using sgdisk with a non-destructive option, like "-p". + 1.0.3 (7/27/2017): ------------------ diff --git a/gpt.cc b/gpt.cc index 03a2156..28c52a7 100644 --- a/gpt.cc +++ b/gpt.cc @@ -1593,7 +1593,7 @@ WhichToUse GPTData::UseWhichPartitions(void) { } // if GPT corrupt if (which == use_new) - cout << "Creating new GPT entries.\n"; + cout << "Creating new GPT entries in memory.\n"; return which; } // UseWhichPartitions()