Closed S-Man42 closed 3 years ago
Is there any chance to be less strict on the version constraint and accept any 0.x version?
If not lgtm
You can do:
>=0.11.0 <1.0.0
or even (which is not recommended)
any
As even 0.x minor version update might include breaking changes I prefer to keep the PR like this.
See https://dart.dev/tools/pub/versioning#semantic-versions
Although semantic versioning doesn’t promise any compatibility between versions prior to 1.0.0, the Dart community convention is to treat those versions semantically as well. The interpretation of each number is just shifted down one slot: going from 0.1.2 to 0.2.0 indicates a breaking change, going to 0.1.3 indicates a new feature, and going to 0.1.2+1 indicates a change that doesn’t affect the public API.
Thanks @S-Man42, I'm reviewing it right now.
All good! Thanks @S-Man42
Close #23