>> I'd have to check but you can probably use the GsDeployer class with 1.0-beta.8.6.
I am still on Pharo 1.0, GemTools 8.4. Should I upgrade?
Also, the following should work:
[ :className | | c |
c := Smalltalk at: className.
c isBehavior
ifTrue: [
[ c classHistory size > 1 ]
whileTrue:
[ ( c classHistory at: 1 ) migrateInstancesTo: c classHistory currentVersion.
c classHistory removeVersion: ( c classHistory at: 1 )
]
]
] value: #MyTestClassWithHistory
Thierry