packages feed

hascal 2.0.0 → 2.0.0.1

raw patch · 2 files changed

+3/−7 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Hascal.hs view
@@ -170,5 +170,6 @@ -- E.g., it doesn't show the real or imaginary part of the number if it's @0@. prettyPrint :: (Show t, RealFloat t) => Complex t -> String prettyPrint (r:+0) = show r+prettyPrint (r:+1) = prettyPrint (r:+0) ++ " + i" prettyPrint (0:+i) = show i ++ "*i" prettyPrint (r:+i) = show r ++ " + " ++ show i ++ "*i"
hascal.cabal view
@@ -1,5 +1,5 @@ name:          hascal-version:       2.0.0+version:       2.0.0.1 synopsis:      A minimalistic but extensible and precise calculator description:   Hascal is both a simple but extendable calculator library for                Haskell as well as a command-line program using this library.@@ -27,12 +27,7 @@  source-repository head   type:     darcs-  location: http://darcsden.com/mekeor/hascal---source-repository head-  type:     git-  location: git://github.com/mekeor/hascal.git+  location: http://hub.darcs.net/mekeor/hascal   test-suite test