fast-arithmetic 0.6.0.8 → 0.6.0.9
raw patch · 2 files changed
+8/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- fast-arithmetic.cabal +4/−2
CHANGELOG.md view
@@ -1,5 +1,9 @@ # fast-arithmetic +## 0.6.0.9++ * Fix builds on older GHCs.+ ## 0.6.0.8 * Improved performance slightly
fast-arithmetic.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: fast-arithmetic-version: 0.6.0.8+version: 0.6.0.9 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018 Vanessa McHale@@ -49,7 +49,6 @@ library exposed-modules: Numeric.NumberTheory- cc-options: -mtune=native -flto -O3 c-sources: cbits/number-theory.c cbits/numerics.c@@ -63,6 +62,9 @@ build-depends: base >=4.3 && <5, composition-prelude >=1.2.0.0+ + if impl(ghc >=8.0)+ cc-options: -mtune=native -flto -O3 if os(windows) buildable: False