How do I advance a 3.6 version to 3.7?

Ned Konz ned at squeakland.org
Fri Nov 21 16:42:54 UTC 2003


On Friday 21 November 2003 5:28 am, michael.cole at nimiq.net wrote:
> Hi,
>
> I have an image that has been marked as version 3.6  and want to now
> allow it to advance to 3.7a. Changing the version reported in
> SystemVersion doesn't seem to do the trick. Any hints?

The magic is in the CS 5429advanceTo37-dew.cs:

"delete the four gamma updates because they will be re-loaded anyway, so we 
avoid popup messages"
			ChangeSorter removeChangeSetsNamedSuchThat:
					[:name | (name beginsWith: '542') &
							(name beginsWith: '5420') not &
							(name beginsWith: '5429') not].
			SystemVersion newVersion: 'Squeak3.7alpha'.
			SystemVersion current date: '11 September 2003'.
			self inform: 'You may now save this Version 3.7alpha image
and retrieve updates again for 3.7alpha and beyond.'




More information about the Squeak-dev mailing list