packages feed

logfloat 0.13.3.1 → 0.13.3.2

raw patch · 3 files changed

+14/−7 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG view
@@ -1,3 +1,7 @@+0.13.3.2 (2015-08-06):+    - Fixed the buggy Show LogFloat instance+0.13.3.1 (2015-05-30):+    - Moved VERSION to CHANGELOG 0.13.3 (2015-03-29):     - Got clean compile on GHC 7.10.1 0.13.2 (2015-03-23):
logfloat.cabal view
@@ -1,5 +1,5 @@ ------------------------------------------------------------------- wren gayle romano <wren@community.haskell.org>   ~ 2015.05.30+-- wren gayle romano <wren@community.haskell.org>   ~ 2015.08.06 ----------------------------------------------------------------  -- By and large Cabal >=1.2 is fine; but >= 1.6 gives tested-with:@@ -8,7 +8,7 @@ Build-Type:     Simple  Name:           logfloat-Version:        0.13.3.1+Version:        0.13.3.2 Stability:      experimental Homepage:       http://code.haskell.org/~wren/ Author:         wren gayle romano
src/Data/Number/LogFloat.hs view
@@ -14,7 +14,7 @@ {-# OPTIONS_GHC -O2 -fexcess-precision -fenable-rewrite-rules #-}  -------------------------------------------------------------------                                                  ~ 2015.03.24+--                                                  ~ 2015.08.06 -- | -- Module      :  Data.Number.LogFloat -- Copyright   :  Copyright (c) 2007--2015 wren gayle romano@@ -46,7 +46,7 @@       module Data.Number.Transfinite          -- * @LogFloat@ data type-    , LogFloat+    , LogFloat()     -- ** Isomorphism to normal-domain     , logFloat     , fromLogFloat@@ -365,9 +365,12 @@ -- log-domain value instead.  instance Show LogFloat where-    show (LogFloat x) =-        let y = exp x-        in  y `seq` "LogFloat "++show y+    showsPrec p (LogFloat x) =+        let y = exp x in y `seq`+        showParen (p > 9)+            ( showString "logFloat "+            . showsPrec 11 y+            )   ----------------------------------------------------------------