statistics 0.16.1.0 → 0.16.1.1
raw patch · 3 files changed
+8/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Statistics/Distribution/Exponential.hs +2/−2
- changelog.md +5/−0
- statistics.cabal +1/−1
Statistics/Distribution/Exponential.hs view
@@ -142,5 +142,5 @@ instance D.FromSample ExponentialDistribution Double where fromSample xs | G.null xs = Nothing- | G.all (>= 0) xs = Nothing- | otherwise = Just $! ED (S.mean xs)+ | G.any (>= 0) xs = Just $! ED (S.mean xs)+ | otherwise = Nothing
changelog.md view
@@ -1,3 +1,8 @@+## Changes in 0.16.1.1++ * Fixed bug in `fromSample` for exponential distribudion (#190)++ ## Changes in 0.16.1.0 * Dependency on monad-par is dropped. `parMap` from `parallel` is used instead.
statistics.cabal view
@@ -1,5 +1,5 @@ name: statistics-version: 0.16.1.0+version: 0.16.1.1 synopsis: A library of statistical types, data, and functions description: This library provides a number of common functions and types useful