Skip to content

Commit

Permalink
Made loadable in Pharo 11 and 12 (#323)
Browse files Browse the repository at this point in the history
* Baseline supporting Pharo 11 and 12

* Updated Grease version

* Mention Pharo 9+ in README
  • Loading branch information
JanBliznicenko authored Aug 10, 2023
1 parent 2201d8a commit 6d67df3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Magritte is a fully dynamic meta-description framework that helps to solve those

### Installation
* [Pharo Smalltalk](http://www.pharo.org/):
* Pharo 6.x - 8.x:
* Pharo 6.x - 11.x:
```smalltalk
Metacello new
baseline: 'Magritte';
Expand All @@ -27,11 +27,11 @@ In you project Baseline or Configuration definition, add to the spec:
```
baseline: 'Magritte'
with: [ spec repository: 'github://magritte-metamodel/magritte:v3.5.4';
with: [ spec repository: 'github://magritte-metamodel/magritte:v3.8';
loads: #(Core) ];
```
This snippet uses V3.5.4 release version, remember to change the release version to your needs. See BaselineOfMagritte for other groups to load beside of 'Core'.
This snippet uses v3.8 release version, remember to change the release version to your needs. See BaselineOfMagritte for other groups to load beside of 'Core'.
### Mailing-Lists
* [Magritte, Pier and Related Tools](https://www.iam.unibe.ch/mailman/listinfo/smallwiki)
Expand Down
4 changes: 2 additions & 2 deletions source/BaselineOfMagritte/BaselineOfMagritte.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ BaselineOfMagritte >> baseline310CommonExtDeps: spec [
"Common external dependencies for baseline 3.1.0"

spec
baseline: 'Grease' with: [ spec repository: 'github://SeasideSt/Grease:v1.9.0/repository' ];
baseline: 'Grease' with: [ spec repository: 'github://SeasideSt/Grease:v1.12.0/repository' ];
baseline: 'Seaside3'
with: [ "note: we do not want to depend on Zinc, since this is not present in Squeak. Currently no adapter is loaded"
spec
Expand All @@ -45,7 +45,7 @@ BaselineOfMagritte >> baseline310CommonExtDeps: spec [
{ #category : #baselines }
BaselineOfMagritte >> baseline330ForPharo: spec [

spec for: #(#'pharo7.x' #'pharo8.x' #'pharo9.x' #'pharo10.x') do: [
spec for: #(#'pharo7.x' #'pharo8.x' #'pharo9.x' #'pharo10.x' #'pharo11.x' #'pharo12.x') do: [
spec
baseline: 'PharoEnhancements' with: [ spec repository: 'github://seandenigris/Pharo-Enhancements' ].
spec
Expand Down

0 comments on commit 6d67df3

Please sign in to comment.