To reproduce:
- Check out the code for a package that's currently published as
1.1.0
- Edit its
version in elm-package.json to be 1.0.0
- Add something new, such that this will be a
MINOR change.
- Run
elm package bump
Expected: it changes the local 1.0.0 to 1.2.0, since that's the next MINOR version to be published.
Actual: it changes the local 1.0.0 to 1.1.0, even though 1.1.0 has already been published.