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.

Revisions

  1. wilkice created this gist Dec 15, 2021.
    16 changes: 16 additions & 0 deletions a.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    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>