A small interface for bumping versions
Semver (stands for Semantic Versioning) and is convention for managing version names. In semver the version has three parts, each part is a number separated by a dot. Example: 1.0.34.
The three parts represent the magnitude of the changes made this version. Each part has a name:
- Major - changes when there are breaking changes.
- Minor - changes when there are updates like added functionality, but without breaking changes.
- Patch - changes for bug fixes and no functionality is touched.
For more info see semver.org/