OwnWeb / flutter_map_tappable_polyline

A tappable Polyline plugin for flutter_map
https://pub.dev/packages/flutter_map_tappable_polyline
MIT License
54 stars 44 forks source link

Upgraded flutter_map dependency to 0.11.0 #24

Closed S-Man42 closed 3 years ago

S-Man42 commented 3 years ago

Close #23

tuarrep commented 3 years ago

Is there any chance to be less strict on the version constraint and accept any 0.x version?

If not lgtm

S-Man42 commented 3 years ago

You can do: >=0.11.0 <1.0.0

or even (which is not recommended) any

HugoHeneault commented 3 years ago

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.

HugoHeneault commented 3 years ago

All good! Thanks @S-Man42