box-project/amend

update command not working when version number is lower than 1.0.0

alexandresalome opened this issue · 2 comments

Hello,

I created a release 0.1.0 and tried releasing 0.1.1, but didn't work. I changed to 1.0.0, and released 1.0.1, and then it works.

Is it an expected behavior?

Because 0.1.0 and 0.1.1 are not stable releases (according to the Semantic Versioning specification), you will need to use the --pre or -p option to update to it. Once you release a stable version (starting with 1.0.0), you won't need to use that option anymore.

Thanks for feedback, appreciated.