From 8533acff3af060286e99f6731a0757162aed6dae Mon Sep 17 00:00:00 2001 From: David Tonhofer Date: Sun, 28 Feb 2021 11:58:18 +0100 Subject: [PATCH 1/2] Changed `positive digit` to `non-zero digit`as per issue #665 Note: - I have not upgrade the version at the top of the page, still at 2.0.0. Technically, should become 2.0.1 I suppose. - I have used the name `non-zero digit` rather than `nonzero digit` similar to the existing `non-digit`.It's a matter of taste. --- semver.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/semver.md b/semver.md index bdde525..c42b086 100644 --- a/semver.md +++ b/semver.md @@ -182,8 +182,8 @@ Backus–Naur Form Grammar for Valid SemVer Versions | ::= "0" - | - | + | + | ::= | @@ -198,9 +198,9 @@ Backus–Naur Form Grammar for Valid SemVer Versions | ::= "0" - | + | - ::= "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" + ::= "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ::= "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" From 8a39e3e19cd83c7034c29db5316f216458b2bd0f Mon Sep 17 00:00:00 2001 From: David Tonhofer Date: Mon, 1 Mar 2021 16:19:38 +0100 Subject: [PATCH 2/2] Update semver.md Uptick of the patch version at the top of the page --- semver.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semver.md b/semver.md index c42b086..48bbb85 100644 --- a/semver.md +++ b/semver.md @@ -1,4 +1,4 @@ -Semantic Versioning 2.0.0 +Semantic Versioning 2.0.1 ============================== Summary