packages feed

Peano 0.0.3 → 0.0.4

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/Peano.hs view
@@ -16,8 +16,8 @@ plus (Succ n) m = Succ (plus n m)  times :: Peano -> Peano -> Peano-times Zero     _ = Zero-times (Succ n) m = plus n (times n m)+times _ Zero = Zero+times n (Succ m) = plus n (times n m)  infinity :: Peano infinity = Succ infinity
Peano.cabal view
@@ -7,7 +7,7 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version:             0.0.3+Version:             0.0.4  -- A short (one-line) description of the package. Synopsis:            simple Peano numbers