Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ClotildeToullec committed Sep 6, 2024
1 parent 6cc18df commit de65c87
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![Development](https://github.com/moosetechnology/Moose/actions/workflows/continuous.yml/badge.svg)](https://github.com/moosetechnology/Moose/actions/workflows/continuous.yml)
[![Development](https://github.com/moosetechnology/Moose/actions/workflows/test-and-release.yml/badge.svg)](https://github.com/moosetechnology/Moose/actions/workflows/test-and-release.yml)
[![Stable](https://github.com/moosetechnology/Moose/actions/workflows/release.yml/badge.svg)](https://github.com/moosetechnology/Moose/actions/workflows/release.yml)

Moose is an extensive platform for software and data analysis.

Expand All @@ -16,9 +17,9 @@ Please refer to the [moose wiki](https://moosetechnology.github.io/moose-wiki/)

### Load Moose in a Pharo image

#### Latest version: Moose 11
#### Latest version: Moose 12

Execute this in a Pharo 11 image:
Execute this in a Pharo 12 or 13 image:

```smalltalk
Metacello new
Expand All @@ -28,26 +29,26 @@ Metacello new
load
```

#### Stable version: Moose 10
#### Stable version: Moose 11

Execute this in a Pharo 10 image:
Execute this in a Pharo 11 or 12 image:
```smalltalk
[ Metacello new
baseline: 'Moose';
repository: 'github://moosetechnology/Moose:v10.x.x/src';
repository: 'github://moosetechnology/Moose:v11.x.x/src';
load ]
on: MCMergeOrLoadWarning
do: [ :warning | warning load ]
```

#### Old stable version: Moose 9
#### Old stable version: Moose 10

Execute this in a Pharo 9 image:
Execute this in a Pharo 10 image:

```smalltalk
[ Metacello new
baseline: 'Moose';
repository: 'github://moosetechnology/Moose:v9.x.x/src';
repository: 'github://moosetechnology/Moose:v10.x.x/src';
load ]
on: MCMergeOrLoadWarning
do: [ :warning | warning load ]
Expand Down

0 comments on commit de65c87

Please sign in to comment.