packages feed

binary 0.8.9.2 → 0.8.9.3

raw patch · 3 files changed

+8/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

binary.cabal view
@@ -9,7 +9,7 @@ --   sed -i 's/\(binary\),/\1-cabal-is-broken,/' binary.cabal  name:            binary-version:         0.8.9.2+version:         0.8.9.3 license:         BSD-3-Clause license-file:    LICENSE author:          Lennart Kolmodin <kolmodin@gmail.com>@@ -60,7 +60,7 @@   ghc-options:     -O2 -Wall -fliberate-case-threshold=1000    if impl(ghc >= 8.0)-    ghc-options: -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances+    ghc-options: -Wcompat -Wnoncanonical-monad-instances   default-language: Haskell2010  test-suite qc
changelog.md view
@@ -1,6 +1,11 @@ binary ====== +binary-0.8.9.3+--------------++- Drop `-Wnoncanonical-monadfail-instances` from build flags+ binary-0.8.9.2 -------------- 
src/Data/Binary/Get.hs view
@@ -41,7 +41,7 @@ -- The fields in @Trade@ are marked as strict (using @!@) since we don't need -- laziness here. In practise, you would probably consider using the UNPACK -- pragma as well.--- <https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/glasgow_exts.html#unpack-pragma>+-- <https://downloads.haskell.org/ghc/latest/docs/users_guide/exts/pragmas.html#unpack-pragma> -- -- Now, let's have a look at a decoder for this format. --