The Trunk: Monticello-mt.818.mcz
[email protected] Sat, 27 Jun 2026 11:21:01 0000
| Newsgroups | gmane.comp.lang.smalltalk.squeak.general |
|---|---|
| Message-ID | <[email protected]> |
Marcel Taeumel uploaded a new version of Monticello to project The Trunk: http://source.squeak.org/trunk/Monticello-mt.818.mcz ==================== Summary ==================== Name: Monticello-mt.818 Author: mt Time: 27 June 2026, 1:21:01.486394 pm UUID: 991513c5-26dc-b042-baf3-b6585a2598b2 Ancestors: Monticello-mt.817 Fix recent typo in notification text. =============== Diff against Monticello-mt.817 =============== Item was changed: ----- Method: MCWorkingCopyBrowser>>saveVersion (in category 'actions') ----- saveVersion | repo version | self canSave ifFalse: [^self]. repo := self repository. repo cacheAllFileNamesDuring: [ self class checkForNewerVersionsBeforeSave ==> [self checkForNewerVersions] ifFalse: [^self]. (repo == MCRepository trunk and: [SystemVersion current isFeatureFreeze]) + ifTrue: [self inform: 'FEATURE FREEZE. A new release is being prepared.\\Please do only commit changes that fix (critical) bugs. Avoid adding new features. Reach out to the release manager or on our mailing list if you have more questions.' translated withCRs]. - ifTrue: [self inform: 'FEATURE FREEZE. A new release is being prepared.\\Please do only commit changes that fix (critical) bugs. Avoid adding new features. Reach out to the release manager or on via our mailing list if you have more questions.' translated withCRs]. (repo == MCRepository trunk and: [SystemVersion current isCodeFreeze]) ifTrue: [self inform: 'CODE FREEZE. The new release is almost ready. Yay!!\\Please do only commit URGENT fixes, if any. Reach out to the release manager or on via our mailing list if you have more questions.' translated withCRs]. version := self withRepository: repo do: [workingCopy newVersion]]. version ifNil: [^ self]. (MCVersionInspector new version: version) show. Cursor wait showWhile: [repo storeVersion: version]. MCCacheRepository default cacheAllFileNamesDuring: [repo cacheAllFileNamesDuring: [version allAvailableDependenciesDo: [:dep | (repo includesVersionNamed: dep info name) ifFalse: [repo storeVersion: dep]]]].! Squeak-dev mailing list -- [email protected] To unsubscribe send an email to [email protected]