Wirebox DSL Error from latest dev branch

Just updated to the latest code from the dev branch and got an error
from the ioc Builder when wiring this property:

property name="coldbox" inject="true";

this didn't work either:

property name="coldbox" inject;

But this works:

property name="coldbox" inject="coldbox";

Is the injection DSL required now?

.brett

Number 2 an 3 should work. Number 1 no as it says it will inject the true namespace

I take that back. Number 2 should not work because you want the coldbox controller. Number two says inject from the default namespace which is Id/model

okay thanks!