You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
My process for publishing a new version of a package is as follows (in Elm 0.19):
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
theelm.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 anelm.json
containing the previous version number.This doesn't appear to cause any real problems, but it's annoying.
elm publish
should error if theelm.json
on GitHub doesn't match the local copy.The text was updated successfully, but these errors were encountered: