Skip to content

Commit

Permalink
Merge pull request #12141 from theseion/12132-Fuel-Platform-Pharo-10-…
Browse files Browse the repository at this point in the history
…still-in-the-Pharo-11-image

Remove Pharo 10 from #metacelloPlatformAttributes
  • Loading branch information
MarcusDenker committed Dec 20, 2022
2 parents 3783ac5 + 3adac20 commit fce2c93
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/BaselineOfTaskIt/BaselineOfTaskIt.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ BaselineOfTaskIt >> baseline: spec [
spec for: #'pharo8.x' do: [ self baselineForPharo8: spec ].
spec for: #'pharo9.x' do: [ self baselineForPharo9: spec ].
spec for: #'pharo10.x' do: [ self baselineForPharo10: spec ].
spec for: #'pharo11.x' do: [ self baselineForPharo11: spec ].
spec for: #'pharo6.1.x' do: [ self baselineForPharo6: spec ]
]

Expand Down Expand Up @@ -141,6 +142,13 @@ BaselineOfTaskIt >> baselineForPharo10: spec [
self baselineForCommon: spec
]

{ #category : #baselines }
BaselineOfTaskIt >> baselineForPharo11: spec [

spec package: #TaskIt.
self baselineForCommon: spec
]

{ #category : #baselines }
BaselineOfTaskIt >> baselineForPharo6: spec [
spec
Expand Down
2 changes: 1 addition & 1 deletion src/System-Support/SmalltalkImage.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ SmalltalkImage >> memoryHogs [
SmalltalkImage >> metacelloPlatformAttributes [
"Returns the tags for the conditional platform loading in Metacello. Pay attention the order is important: from most to least general."

^ #(#squeakCommon #pharo #'pharo10.x' #'pharo10.0.x' #'pharo11.x' #'pharo11.0.x')
^ #(#squeakCommon #pharo #'pharo11.x' #'pharo11.0.x')
]

{ #category : #'special objects' }
Expand Down

0 comments on commit fce2c93

Please sign in to comment.