Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Pharo 10 from #metacelloPlatformAttributes #12141

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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