projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bfdb9c3
)
Correct an inaccuracy
author
Pavel Potocek
<pavelpotocek@gmail.com>
Thu, 24 Aug 2017 09:22:09 +0000
(11:22 +0200)
committer
GitHub
<noreply@github.com>
Thu, 24 Aug 2017 09:22:09 +0000
(11:22 +0200)
src/doc/specifying-dependencies.md
patch
|
blob
|
history
diff --git
a/src/doc/specifying-dependencies.md
b/src/doc/specifying-dependencies.md
index 3ab0d57165defb79d9556f8acb99db5e695418e2..e009c64d8fcb4982e02c7cd2e7adf2de45f168bf 100644
(file)
--- a/
src/doc/specifying-dependencies.md
+++ b/
src/doc/specifying-dependencies.md
@@
-47,10
+47,10
@@
be allowed with them:
^0 := >=0.0.0 <1.0.0
```
-This compatibility convention is different from SemVer in the way it treats
the
+This compatibility convention is different from SemVer in the way it treats
versions before 1.0.0. While SemVer says there is no compatibility before
-1.0.0, Cargo considers
any `0.x.y` and `0.x.z` versions, where `z ≥ y`, to be
-
compatible
.
+1.0.0, Cargo considers
`0.x.y` to be compatible with `0.x.z`, where `y ≥ z`
+
and `x > 0`
.
## Tilde requirements