You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another way to say this is that foo < 1.3 expresses negative information, i.e. “foo-1.3 or foo-1.4.2 will not be compatible”; whereas foo ^>= 1.2.3.4 asserts the positive information that “foo-1.2.3.4 is known to be compatible”
And
The subtle but important difference in signaling allows tooling to treat explicitly expressed <-style constraints and inferred (^>=-style) upper bounds differently. For instance, allow-newer’s ^-modifier allows to relax only ^>=-style bounds while leaving explicitly stated <-constraints unaffected.
The text was updated successfully, but these errors were encountered:
^>=0.5.0.0
gets translated to>=0.5.0.0 && <0.6
This is not strictly the same and explained in the cabal documentation: https://cabal.readthedocs.io/en/3.4/cabal-package.html?highlight=caret%20operator#build-information
And
The text was updated successfully, but these errors were encountered: