packages feed

fib 0.1 → 0.1.0.1

raw patch · 2 files changed

+3/−3 lines, 2 filesdep ~base-nopreludePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base-noprelude

API changes (from Hackage documentation)

Files

fib.cabal view
@@ -2,7 +2,7 @@ name:   fib version:-  0.1+  0.1.0.1 synopsis:   fibonacci algebra description:@@ -41,7 +41,7 @@   other-modules:     Prelude   build-depends:-    , base-noprelude >= 4.10.1.0 && < 4.13+    , base-noprelude >= 4.10.1.0 && < 5     , semirings >= 0.3     , integer-gmp   ghc-options:
src/Fib.hs view
@@ -30,7 +30,7 @@  instance Applicative Fib where   pure x = Fib x x-  {-# inline pure #-} +  {-# inline pure #-}   Fib fa fb <*> Fib a b = Fib (fa a) (fb b)   {-# inline (<*>) #-}