Doru,
I mean the code diffs. Metacello versions resolve to a list of packages with versions. Each package with same name but different versions leads to code diffs in the classes,… etc. What I want is a complete diff of all classes, methods of the packages in that metacello config.
Norbert
You mean like this:
from := String cr join: ((ConfigurationOfGToolkit project version: '0.21-baseline') spec packages list collect: #name).
to := String cr join: ((ConfigurationOfGToolkit project version: '0.20-baseline') spec packages list collect: #name).
(DiffMorph new
from: from
to: to) openInWindow
?
<a DiffMorph(1027080192).png>
Doru