Skip to content

Instantly share code, notes, and snippets.

@khalidx
Last active January 2, 2019 06:50
Show Gist options
  • Save khalidx/8395361f85e28d6192f5b9ff632937e6 to your computer and use it in GitHub Desktop.
Save khalidx/8395361f85e28d6192f5b9ff632937e6 to your computer and use it in GitHub Desktop.
Basic Semantic Versioning

Basic Semantic Versioning

  • PATCH 0.0.x level changes for implementation level detail changes, such as small bug fixes
  • MINOR 0.x.0 level changes for any backwards compatible API changes, such as new functionality/features
  • MAJOR x.0.0 level changes for backwards incompatible API changes, such as changes that will break existing users code if they update

Further Reading

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