From 856fdfda45c20c1139048e37bd4ad000d4e3a838 Mon Sep 17 00:00:00 2001 From: Vasyl Boroviak Date: Fri, 17 Jan 2020 11:54:53 +1100 Subject: [PATCH] Add "package or API" in MAJOR version description --- semver.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semver.md b/semver.md index be210b3..7d8d50a 100644 --- a/semver.md +++ b/semver.md @@ -6,7 +6,7 @@ Summary Given a version number MAJOR.MINOR.PATCH, increment the: -1. MAJOR version when you make incompatible API changes, +1. MAJOR version when you make incompatible package or API changes, 1. MINOR version when you add functionality in a backwards compatible manner, and 1. PATCH version when you make backwards compatible bug fixes.