packages feed

grow-vector 0.1.4.0 → 0.1.5.0

raw patch · 5 files changed

+9/−4 lines, 5 filesdep +hspecdep ~basedep ~vectorPVP ok

version bump matches the API change (PVP)

Dependencies added: hspec

Dependency ranges changed: base, vector

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.1.5.0++* Fix tests with recent versions of tasy.+ # 0.1.4.0  * Relax base upper bounds.
grow-vector.cabal view
@@ -1,7 +1,7 @@ name:                grow-vector synopsis:            Mutable vector with efficient appends description:         Mutable vector with efficient updates. Simple implementation on partially filled array with capacity tracking and resizing.-version:             0.1.4.0+version:             0.1.5.0 license:             MIT license-file:        LICENSE copyright:           2020 Anton Gushcha@@ -65,3 +65,4 @@     , tasty-discover     , tasty-hspec     , tasty-quickcheck+    , hspec
test/Data/Vector/Grow/Storable/Test.hs view
@@ -6,7 +6,7 @@ import Data.Vector.Grow.Storable (GrowVector) import qualified Data.Vector.Grow.Storable as V -import Test.Tasty.Hspec+import Test.Hspec  spec_creation :: Spec spec_creation = describe "vector creation" $ do
test/Data/Vector/Grow/Test.hs view
@@ -6,7 +6,7 @@ import Data.Vector.Grow (GrowVector) import qualified Data.Vector.Grow as G -import Test.Tasty.Hspec+import Test.Hspec  spec_creation :: Spec spec_creation = describe "vector creation" $ do
test/Data/Vector/Grow/Unboxed/Test.hs view
@@ -6,7 +6,7 @@ import Data.Vector.Grow.Unboxed (GrowVector) import qualified Data.Vector.Grow.Unboxed as U -import Test.Tasty.Hspec+import Test.Hspec  spec_creation :: Spec spec_creation = describe "vector creation" $ do