Open
Description
My process for publishing a new version of a package is as follows (in Elm 0.19):
- Make changes and test them
- elm bump
- git commit -am "Bump version from xxx to yyy"; git push
- elm publish
- Execute the two lines printed about updating the tags on GitHub (I have an Emacs keyboard macro that copies one of those lines down in my shell buffer).
- elm publish
Sometimes I combine the last changes with the elm bump
in a single commit.
This is all well and good, except sometimes I forgot to git push
the elm.json
with the bumped version number (in step 3). elm publish
does not complain, and I end up with a new tag on GitHub with an elm.json
containing the previous version number.
This doesn't appear to cause any real problems, but it's annoying. elm publish
should error if the elm.json
on GitHub doesn't match the local copy.
Metadata
Metadata
Assignees
Labels
No labels