DScanner 0.12.1 stopped working

Guillaume Piolat first.last at example.com
Thu Jul 7 12:37:13 UTC 2022


On Tuesday, 5 July 2022 at 18:47:59 UTC, Carsten Schlote wrote:
> The current breaking change should bump the mayor number.
>
> The minor number should mark backward compatible changes.
>
> And the last digit should be bumped for all bugfixes, cleanups 
> and other stuff, which does NOT change the API at all (except 
> of fixing it).

<rant>

One should almost always subscribe to non-breaking change, doing:

     ~>x.0       => it means   ">=x.0.0 <x+1.0.0"

The above is exactly what you want.
This should never happen:

     ~>x.y.z.  => just say NO

Breaking changes require MAJOR version bump.
DUB suggesting the faulty version doesn't help.
Use `~>x.0`.


More information about the Digitalmars-d mailing list