Merge pull request #3753 from felixkiss/patch-2
Update why-are-unbound-version-constraints-a-bad-idea.mdpull/3677/merge
commit
01a244d3c8
|
@ -14,7 +14,7 @@ compatible with the new major version of your dependency.
|
||||||
|
|
||||||
For example instead of using `>=3.4` you should use `~3.4` which allows all
|
For example instead of using `>=3.4` you should use `~3.4` which allows all
|
||||||
versions up to `3.999` but does not include `4.0` and above. The `~` operator
|
versions up to `3.999` but does not include `4.0` and above. The `~` operator
|
||||||
works very well with libraries follow [semantic versioning](http://semver.org).
|
works very well with libraries following [semantic versioning](http://semver.org).
|
||||||
|
|
||||||
**Note:** As a package maintainer, you can make the life of your users easier
|
**Note:** As a package maintainer, you can make the life of your users easier
|
||||||
by providing an [alias version](../articles/aliases.md) for your development
|
by providing an [alias version](../articles/aliases.md) for your development
|
||||||
|
|
Loading…
Reference in New Issue