Approach to versioning¶
The current approach to versioning of “Publisher for MkDocs” is based on semantic versioning and looks like this v1.2.3
, or in general, it's: vMAJOR,MINOR,PATCH
where:
MAJOR
number is increased when a new braking changes are introduced, for example some settings are removed or MkDocs is updated, and this project has to adjust to those changes.MINOR
number is increased when new functionality is introduced without breaking changes or a new plugin is added.PATCH
number is increased when there is no new functionality and usually is used for bug fixes.