diff --git a/README.md b/README.md index 9374387d..3ac5d853 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 @@ -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 ]