histogram-fill 0.8.4.0 → 0.8.4.1
raw patch · 3 files changed
+10/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog +6/−0
- Data/Histogram/Bin/LogBinD.hs +3/−3
- histogram-fill.cabal +1/−1
ChangeLog view
@@ -1,3 +1,9 @@+Changes in 0.8.4.1++ * All fields of LogDinD are strict and unpacked. This fixes NFData+ instance and improves performance++ Changes in 0.8.4.0 * Missing instances for CutDirection added
Data/Histogram/Bin/LogBinD.hs view
@@ -23,9 +23,9 @@ -- -- > b = logBinDN (lowerLimit b) (logBinDIncrement b) (nBins b) data LogBinD = LogBinD- Double -- Low border- Double -- Increment ratio- Int -- Number of bins+ {-# UNPACK #-} !Double -- Low border+ {-# UNPACK #-} !Double -- Increment ratio+ {-# UNPACK #-} !Int -- Number of bins deriving (Eq,Data,Typeable) -- | Increment ratio for 'LogBinD'
histogram-fill.cabal view
@@ -1,5 +1,5 @@ Name: histogram-fill-Version: 0.8.4.0+Version: 0.8.4.1 Synopsis: Library for histograms creation. Description: This is library for histograms filling. Its aim to provide