From 2bfa9b0cbac8dcc33fc836ab4e5162bf014e19ff Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Sat, 15 Jun 2013 08:57:37 +0200 Subject: [PATCH] removed increments by 1 --- semver.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/semver.md b/semver.md index daf93b5..5edd639 100644 --- a/semver.md +++ b/semver.md @@ -62,8 +62,7 @@ However it is done, it should be precise and comprehensive. 1. A normal version number MUST take the form X.Y.Z where X, Y, and Z are non-negative integers, and MUST NOT contain leading zeroes. X is the major version, Y is the minor version, and Z is the patch version. -Each element MUST increase numerically and SHOULD do so by increments of -one. For instance: 1.9.0 -> 1.10.0 -> 1.11.0. +Each element MUST increase numerically. For instance: 1.9.0 -> 1.10.0 -> 1.11.0. 1. Once a versioned package has been released, the contents of that version MUST NOT be modified. Any modifications MUST be released as a new version.