compensated 0.1 → 0.1.1
raw patch · 4 files changed
+10/−2 lines, 4 filessetup-changedPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.markdown +5/−0
- Setup.lhs +1/−1
- compensated.cabal +1/−1
- src/Numeric/Compensated.hs +3/−0
CHANGELOG.markdown view
@@ -1,3 +1,8 @@+0.1.1+-----+* Fixed a bug in the `Setup.lhs` `postHaddock` hook.+* Reformatted haddocks+ 0.1 --- * Split from [analytics](https://github.com/analytics/analytics)
Setup.lhs view
@@ -22,7 +22,7 @@ generateBuildModule (fromFlag (buildVerbosity flags)) pkg lbi buildHook simpleUserHooks pkg lbi hooks flags , postHaddock = \args flags pkg lbi -> do- copyFiles normal (haddockOutputDir flags pkg) [("images","Hierarchy.png")]+ copyFiles normal (haddockOutputDir flags pkg) [] postHaddock simpleUserHooks args flags pkg lbi }
compensated.cabal view
@@ -1,6 +1,6 @@ name: compensated category: Numeric-version: 0.1+version: 0.1.1 license: BSD3 cabal-version: >= 1.8 license-file: LICENSE
src/Numeric/Compensated.hs view
@@ -28,8 +28,11 @@ -- References: -- -- * <http://web.mit.edu/tabbott/Public/quaddouble-debian/qd-2.3.4-old/docs/qd.pdf>+-- -- * <http://www.ti3.tuhh.de/paper/rump/OgRuOi05.pdf>+-- -- * Donald Knuth's \"The Art of Computer Programming, Volume 2: Seminumerical Algorithms\"+-- -- * <http://en.wikipedia.org/wiki/Kahan_summation_algorithm> -------------------------------------------------------------------- module Numeric.Compensated