From 13875f5860a1509ee7203cde4daf49c6fa7ed7fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Dachary?= Date: Thu, 16 Mar 2023 16:12:51 +0100 Subject: [PATCH] address Ryuno-Ki review comments --- v1.19/user/semver.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/v1.19/user/semver.md b/v1.19/user/semver.md index a7fe98bf..719ccc36 100644 --- a/v1.19/user/semver.md +++ b/v1.19/user/semver.md @@ -5,9 +5,10 @@ license: 'CC-BY-SA-4.0' --- [SemVer](https://semver.org/spec/v2.0.0.html) allows users to understand the scope of a software update at first glance, based on the following : -- the patch number is incremented when something is fixed ; -- the minor number is incremented when something is added ; -- the major number is incremented when something is moved or removed. + +- Patch is increased for backwards-compatible bugfixes. +- Minor is increased for backwards-compatible new features. +- Major is increased for breaking changes. *something* could be : - a command, an option or an argument, for a CLI ;