summaryrefslogtreecommitdiff
path: root/doc/versioning.md
diff options
context:
space:
mode:
authorJF <JF002@users.noreply.github.com>2021-11-28 13:59:09 +0100
committerGitHub <noreply@github.com>2021-11-28 13:59:09 +0100
commit583c7ee22fdf576490169643762240bf9bb6b375 (patch)
treec0bca6afa9b570bb2f78370c1096131acafd32d0 /doc/versioning.md
parentf9613d28c06f96fbc93ccbc59a8f749bbc5f7fa5 (diff)
parent4257073a02215e3f182d993765e4c5edef2d9845 (diff)
Merge branch 'develop' into motionservice_fix_typo_in_include
Diffstat (limited to 'doc/versioning.md')
-rw-r--r--doc/versioning.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/versioning.md b/doc/versioning.md
index 48e05043..2fa36ab9 100644
--- a/doc/versioning.md
+++ b/doc/versioning.md
@@ -1,6 +1,6 @@
# Versioning
-The versioning of this project is based on [Semantic versionning](https://semver.org/) :
+The versioning of this project is based on [Semantic versioning](https://semver.org/):
- - The **patch** is incremented when we fix a bug on a **released** version (most of the time using a **hotfix** branch).
- - The **minor** is incremented when we release a new version with new features. It corresponds to a merge of **develop** into **master**.
- - The **major** should be incremented when a breaking change is made to the application. We still have to define what is a breaking change in the context of this project. For now, I suggest that it stays **0** until we have a fully functioning firmware suited for the final user. \ No newline at end of file
+ - The **patch** is incremented when a bug is fixed on a **released** version (most of the time using a **hotfix** branch).
+ - The **minor** is incremented when a new version with new features is released. It corresponds to a merge of **develop** into **master**.
+ - The **major** should be incremented when a breaking change is made to the application. We still have to define what is a breaking change in the context of this project.