vector-space 0.8.4 → 0.8.5
raw patch · 2 files changed
+11/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- src/Data/AffineSpace.hs +10/−1
- vector-space.cabal +1/−1
src/Data/AffineSpace.hs view
@@ -21,7 +21,16 @@ import Data.VectorSpace -infix 4 .+^, .-^, .-.+-- Through 0.8.4, I used the following fixities.+-- +-- infix 4 .+^, .-^, .-.+-- +-- Changed in 0.8.5 to match precedence of + and -, and to associate usefully.+-- Thanks to Ben Gamari for suggesting left-associativity.++infixl 6 .+^, .-^+infix 6 .-.+ -- TODO: Convert AffineSpace from fundep to associated type, and eliminate -- FunctionalDependencies above.
vector-space.cabal view
@@ -1,5 +1,5 @@ Name: vector-space-Version: 0.8.4+Version: 0.8.5 Cabal-Version: >= 1.6 Synopsis: Vector & affine spaces, linear maps, and derivatives Category: math