From 2afc6cc300a2954d42ca6b3280ce354d424dba7d Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sat, 4 Jul 2020 14:28:02 +0200 Subject: [PATCH] Clarify that changes refers to the API in MINOR versions --- semver.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semver.md b/semver.md index 22c9573..fe24031 100644 --- a/semver.md +++ b/semver.md @@ -7,7 +7,7 @@ Summary Given a version number MAJOR.MINOR.PATCH, increment the: 1. MAJOR version when you make incompatible API changes -1. MINOR version when you add functionality in a backward compatible +1. MINOR version when you add functionality to the API in a backward compatible manner 1. PATCH version when you make backward compatible bug fixes