UNPKG

@digitalpersona/services

Version:
23 lines (17 loc) 699 B
--- layout: default title: Versioning Guidelines has_toc: false parent: Library Maintenance nav_order: 5 --- {% include header.html %} # Package Versioning Guidelines ## Semantic Versioning [Learn](https://semver.org/spec/v2.0.0.html) and follow strictly the SemVer schema: Major.Minor.Patch[-Stage] * Change `Major` when breaking changes are introduced. * Change `Minor` when new functionality is added, but backvard compatibility is preserved. * Change `Patch` when existing functionalty is fixed, no new functionality is added and backward compatibility is preserved. * Set `Stage` to `-alpha`, `-beta`, `-pre` etc for prereleases. Remove `Stage` for releases.