Login  Register

Re: Seaside 3.1 and 3.2 in Pharo 5

Posted by Johan Brichau-2 on Mar 23, 2016; 9:57am
URL: https://forum.world.st/Seaside-3-1-and-3-2-in-Pharo-5-tp4885580p4886072.html

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';
    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 <[hidden email]> 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