bytes 0.11.3 → 0.11.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.markdown +4/−0
- bytes.cabal +1/−1
- tests/doctests.hsc +2/−1
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+0.11.4+------+* Fixed issue #6 with regards to the test harness performance.+ 0.11.3 ------ * Fixed the doctests from 0.11.2
bytes.cabal view
@@ -1,6 +1,6 @@ name: bytes category: Data, Serialization-version: 0.11.3+version: 0.11.4 license: BSD3 cabal-version: >= 1.8 license-file: LICENSE
tests/doctests.hsc view
@@ -59,7 +59,8 @@ : "-optPdist/build/autogen/cabal_macros.h" : "-hide-all-packages" : "-Iincludes"- : map ("-package="++) deps ++ sources+ : "dist/build/cbits/i2d.o"+ : map ("-package="++) (filter (not . ("bytes-" `isPrefixOf`)) deps) ++ sources getSources :: IO [FilePath] getSources = filter (isSuffixOf ".hs") <$> go "src"