Torsten pointed me to a typo I made for loading version 3.2.0.
This is the correct version:

���Load pre-release 3.2"
Metacello new
    configuration: 'Seaside3';
    repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
    version: ���3.2.0';
    load

You could also already use the symbolic version #release3.2, but it���s not released yet :)
Metacello new
    configuration: 'Seaside3';
    version: #'release3.2';
    load

thx for trying and the feedback!
Johan

On 20 Mar 2016, at 19:49, Johan Brichau <johan@inceptive.be> wrote:

Hi Pharoers,

If you are looking to use Seaside in Pharo 5, please go ahead and let us know if you run into any issues.
Seaside 3.1.5 and 3.2.0 (unreleased) load into Pharo 5 and all tests are green [1].

Also: I know the finalization of 3.2.0 is long overdue, so news about that is coming soon.

cheers,
Johan


���Load release 3.1"
Metacello new
    configuration: 'Seaside3';
    version: #'release3.1';
    load.

���Load pre-release 3.2"
Metacello new
    configuration: 'Seaside3';
    version: #���3.2.0';
    load