Do you follow the MAJOR.MINOR.PATCH semantic? Because if yes, then 1.7.0 breaks backwards compatibility.
https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/README.md#getting-started
Note that OpenZeppelin does not currently follow semantic versioning. You may encounter breaking changes upon a minor version bump.
What is the reason for _not_ following Semver?
Can someone please expand on this issue?
Not following Semantic Versioning goes against a (near) industry-wide standard and therefore the principle of least surprise. Most automatic tooling will treat OpenZeppelin's versions improperly, resulting in software that breaks, or worse, malformed smart contracts that get deployed.
Dear maintainers of OpenZeppelin; we are still waiting for an answer. Please respond at your earliest convenience.
the reasoning is basically: we want to feel free to make breaking changes often. We should be in 0.x.y but it's too late for that.
we updated the installation instructions to save the exact version instead of the semver expression, so it shouldn't cause unintended upgrades
moving to semver is planned in the future, but I'm not sure what that timeline is
Most helpful comment
What is the reason for _not_ following Semver?