Given a sub 1.y version, e.g. 0.8.z, ^ (caret) currently expands to:
dep ensure 'github.com/pkg/errors@^0.8.0' => "version": ">=0.8.0, <1.0.0"`
But should expand to:
dep ensure 'github.com/pkg/errors@^0.8.0' => "version": ">=0.8.0, <0.9.0"`
Thanks for filing the report! Sorry it took me a while to respond.
I actually ran across this independently today, while hammering out some kinks in our semver lib. There's a PR open that, once its merged and we merge in from upstream, will fix this: Masterminds/semver#53
Nice! Thanks for the constant hard work.
This is fixed now, with the latest semver update.
Most helpful comment
This is fixed now, with the latest semver update.