A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-mt.735.mcz==================== Summary ====================
Name: Monticello-mt.735
Author: mt
Time: 5 January 2021, 1:23:12.398865 pm
UUID: b2a82046-9f24-4838-896b-6f669aa8a65d
Ancestors: Monticello-mt.734
Consider version infos being working copies "in disguise" :-)
=============== Diff against Monticello-mt.734 ===============
Item was changed:
----- Method: MCAncestry>>isWorkingAncestry (in category 'testing') -----
isWorkingAncestry
+
+ ^ self name = self nameForWorkingCopy!
- ^ false!
Item was added:
+ ----- Method: MCAncestry>>nameForWorkingCopy (in category 'ancestry') -----
+ nameForWorkingCopy
+
+ ^ '<working copy>'!
Item was changed:
----- Method: MCVersionInfo>>name (in category 'accessing') -----
name
+ ^ name ifNil: [self nameForWorkingCopy]!
- ^ name ifNil: ['<working copy>']!
Item was changed:
----- Method: MCWorkingAncestry>>name (in category 'testing') -----
name
+ ^ self nameForWorkingCopy!
- ^ '<working copy>'!