hmatrix-vector-sized 0.1.1.1 → 0.1.1.2
raw patch · 3 files changed
+14/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +7/−3
- hmatrix-vector-sized.cabal +2/−2
- test/Spec.hs +5/−0
CHANGELOG.md view
@@ -1,14 +1,18 @@ Changelog ========= -Version 0.1.1.1+Version 0.1.1.x --------------- *Nov 13, 2018* -<https://github.com/mstksg/hmatrix-vector-sized/releases/tag/v0.1.1.1>+* <https://github.com/mstksg/hmatrix-vector-sized/releases/tag/v0.1.1.1>+ + Fix building on GHC 8.6. -* Fix building on GHC 8.6.+* <https://github.com/mstksg/hmatrix-vector-sized/releases/tag/v0.1.1.2>+ + Fix tests building on GHC 8.6. Version 0.1.1.0 ---------------
hmatrix-vector-sized.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 099428797d283e9c364d9864eeafde7718d5f1c900fc7d8a8e8bc0775cdfb939+-- hash: 8e80ded1d28394026d3fe0117f363e0ba49be99cf24bdba7f7e79c2a83174970 name: hmatrix-vector-sized-version: 0.1.1.1+version: 0.1.1.2 synopsis: Conversions between hmatrix and vector-sized types description: Conversions between statically sized types in hmatrix and vector-sized. .
test/Spec.hs view
@@ -1,9 +1,14 @@+{-# LANGUAGE CPP #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-orphans #-} {-# OPTIONS_GHC -fplugin GHC.TypeLits.KnownNat.Solver #-}++#if MIN_VERSION_base(4,12,0)+{-# LANGUAGE NoStarIsType #-}+#endif import Control.Monad import Data.Complex