[squeak-dev] The Trunk: System-ct.1371.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Sep 13 08:15:51 UTC 2022


Christoph Thiede uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ct.1371.mcz

==================== Summary ====================

Name: System-ct.1371
Author: ct
Time: 13 September 2022, 10:15:48.374172 am
UUID: 6ec2954f-5dcc-3f41-b3a7-3c4310973c7f
Ancestors: System-ct.1370

Documents an example on ChangeSet class>>#removeChangeSetsNamedSuchThat:.

=============== Diff against System-ct.1370 ===============

Item was changed:
  ----- Method: ChangeSet class>>removeChangeSetsNamedSuchThat: (in category 'enumerating') -----
  removeChangeSetsNamedSuchThat: nameBlock
+ 	"
+ 	Example (this should match a Monticello version names from installing the update stream):
+ 	
+ 	self removeChangeSetsNamedSuchThat: [:name | name matchesRegex: '[\w-]+-\w+\.\d+']
+ 	"
  	(self changeSetsNamedSuchThat: nameBlock)
  		do: [:cs | self removeChangeSet: cs]!



More information about the Squeak-dev mailing list