packages feed

fixed-vector-binary 1.0.0.1 → 1.0.0.2

raw patch · 4 files changed

+37/−19 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

− ChangeLog
@@ -1,10 +0,0 @@-Changes in 1.0.0.1--  * GHC 8.6 compatibility--Changes in 1.0.0.0--  * Compatibility with fixed-vector-1.0-Changes in 0.6.0.0--  * Initial release
+ ChangeLog.md view
@@ -0,0 +1,14 @@+Changes in 1.0.0.2++  * GHC 8.6+ compatibility for tests as well++Changes in 1.0.0.1++  * GHC 8.6 compatibility++Changes in 1.0.0.0++  * Compatibility with fixed-vector-1.0+Changes in 0.6.0.0++  * Initial release
fixed-vector-binary.cabal view
@@ -1,10 +1,11 @@ Name:           fixed-vector-binary-Version:        1.0.0.1+Version:        1.0.0.2 Synopsis:       Binary instances for fixed-vector Description:-  Binary instances for fixed-vector+  This package contains Binary instances for data types defined in+  fixed-vector package.   -Cabal-Version:  >= 1.8+Cabal-Version:  >= 1.10 License:        BSD3 License-File:   LICENSE Author:         Aleksey Khudyakov <alexey.skladnoy@gmail.com>@@ -13,14 +14,23 @@ Category:       Data Build-Type:     Simple extra-source-files:-  ChangeLog+  ChangeLog.md +tested-with:+    GHC ==7.10.3+     || ==8.0.2+     || ==8.2.2+     || ==8.4.4+     || ==8.6.5+     || ==8.8.1+ source-repository head   type:     git   location: http://github.com/Shimuuar/fixed-vector  Library   Ghc-options:          -Wall+  Default-Language:     Haskell2010   Build-Depends:        base         >=4.8 && <5                       , fixed-vector >=1.0                       , binary@@ -28,6 +38,8 @@     Data.Vector.Fixed.Instances.Binary  Test-Suite test+  Ghc-options:      -Wall+  Default-Language: Haskell2010   Type:           exitcode-stdio-1.0   Hs-source-dirs: test   Main-is:        QC.hs
test/QC.hs view
@@ -1,7 +1,9 @@-{-# LANGUAGE DataKinds           #-}-{-# LANGUAGE FlexibleContexts    #-}-{-# LANGUAGE ScopedTypeVariables #-}-{-# LANGUAGE TypeFamilies        #-}+{-# LANGUAGE DataKinds            #-}+{-# LANGUAGE FlexibleContexts     #-}+{-# LANGUAGE ScopedTypeVariables  #-}+{-# LANGUAGE TypeFamilies         #-}+{-# LANGUAGE UndecidableInstances #-}+{-# OPTIONS_GHC -fno-warn-orphans #-} import Test.Tasty import Test.Tasty.QuickCheck as QC @@ -15,7 +17,7 @@ import           Data.Vector.Fixed.Instances.Binary ()  -+tests :: TestTree tests = testGroup "cereal"   [ testTagged p_serialize (T :: T (F.Only  Int))   , testTagged p_serialize (T :: T (F.VecList 2 Int))