Skip to content

Instantly share code, notes, and snippets.

@wilkice
Created December 15, 2021 03:33
Show Gist options
  • Save wilkice/1c1ca9e136b51fba211d7c1c146809ce to your computer and use it in GitHub Desktop.
Save wilkice/1c1ca9e136b51fba211d7c1c146809ce to your computer and use it in GitHub Desktop.
[semantic version] #dev

three parts

Major.Minor.Patch

increment Major if make backward incompatible changes. increment Minor if make backward compatible changes, specially functionality not bug fix. increment Patch if make bug fix not affecting anything.

If version is released, you can't change it. You should make a new release if there is something to change.

0.y.z is for initial development, anything could be unstable.

start with 0.1.0

https://semver.org

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment