[squeak-dev] The Trunk: System-mt.902.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Aug 17 20:13:23 UTC 2016


Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.902.mcz

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

Name: System-mt.902
Author: mt
Time: 17 August 2016, 10:12:57.526 pm
UUID: 7a82cf34-9366-a549-83f9-1401bf9adee4
Ancestors: System-mt.901

Small fix in system version description because being in code-freeze includes being in feature-freeze.

=============== Diff against System-mt.901 ===============

Item was changed:
  ----- Method: SystemVersion>>description (in category 'printing') -----
  description
  
  	self isAlpha ifTrue: [^ 'ALPHA. New features which are not stable yet may come in\with each update. Also, existing features might not work reliably\due to updates and related changes.' translated withCRs].
  	
+ 	(self isFeatureFreeze and: [self isCodeFreeze not]) ifTrue: [^ 'FEATURE FREEZE. A new release is being prepared.\There will be only bugfixes, but no new features.' translated withCRs].
- 	self isFeatureFreeze ifTrue: [^ 'FEATURE FREEZE. A new release is being prepared.\There will be only bugfixes, but no new features.' translated withCRs].
  	
  	self isCodeFreeze ifTrue: [^ 'RELEASE CANDIDATE. The new release is almost ready.\There will be only bugfixes, if any.' translated withCRs].
  		
  	self isRelease ifTrue: [^ ''].!



More information about the Squeak-dev mailing list