0
0
mirror of https://github.com/semver/semver.git synced 2025-08-22 22:08:33 +00:00
This commit is contained in:
David Tonhofer 2023-06-13 15:47:29 +02:00 committed by GitHub
commit 0e644e8073
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
Semantic Versioning 2.0.0 Semantic Versioning 2.0.1
============================== ==============================
Summary Summary
@ -182,8 +182,8 @@ BackusNaur Form Grammar for Valid SemVer Versions
| <identifier characters> <non-digit> <identifier characters> | <identifier characters> <non-digit> <identifier characters>
<numeric identifier> ::= "0" <numeric identifier> ::= "0"
| <positive digit> | <non-zero digit>
| <positive digit> <digits> | <non-zero digit> <digits>
<identifier characters> ::= <identifier character> <identifier characters> ::= <identifier character>
| <identifier character> <identifier characters> | <identifier character> <identifier characters>
@ -198,9 +198,9 @@ BackusNaur Form Grammar for Valid SemVer Versions
| <digit> <digits> | <digit> <digits>
<digit> ::= "0" <digit> ::= "0"
| <positive digit> | <non-zero digit>
<positive digit> ::= "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" <non-zero digit> ::= "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
<letter> ::= "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" <letter> ::= "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J"
| "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T"