conduit 1.2.6.3 → 1.2.6.4
raw patch · 3 files changed
+7/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- benchmarks/optimize-201408.hs +2/−1
- conduit.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.2.6.4++* Fix benchmark by adding a type signature+ ## 1.2.6.3 * Doc updates
benchmarks/optimize-201408.hs view
@@ -166,7 +166,8 @@ return $ fromIntegral successes / fromIntegral count * 4 , TBIOTest "low level" closeEnough $ do gen <- MWC.createSystemRandom- let go 0 !t = return $! fromIntegral t / fromIntegral count * 4+ let go :: Int -> Int -> IO Double+ go 0 !t = return $! fromIntegral t / fromIntegral count * 4 go i !t = do (x, y) <- MWC.uniform gen let t'
conduit.cabal view
@@ -1,5 +1,5 @@ Name: conduit-Version: 1.2.6.3+Version: 1.2.6.4 Synopsis: Streaming data processing library. description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/conduit>.