Mention that only X.Y.Z is valid for versions in semver

Fixes #6052
This commit is contained in:
Seth Vargo 2015-08-06 16:06:31 -04:00
parent a4a77f279b
commit fd526ad3d9
1 changed files with 3 additions and 1 deletions

View File

@ -65,7 +65,9 @@ but "2.0" might introduce big changes that break your software. By following
this convention, the best constraint is `~> 1.0` because you know it is safe
no matter what version is in that range.
Of course, you're free to use versions however you'd like!
Please note that, while the semantic versioning specification allows for
more than three points and pre-release or beta versions, Vagrant boxes must be
of the format `X.Y.Z` where `X`, `Y`, and `Z` are all positive integers.
## Automatic Update Checking