vector-hashtables 0.1.1.1 → 0.1.1.2
raw patch · 2 files changed
+11/−6 lines, 2 filesdep ~hspecPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: hspec
API changes (from Hackage documentation)
- Data.Vector.Hashtables.Internal: resize :: forall {m} {v1 :: Type -> Type -> Type} {a1} {v2 :: Type -> Type -> Type} {a2}. (PrimMonad m, MVector v1 a1, MVector v2 a2) => Dictionary_ (PrimState m) v1 a1 v2 a2 -> Int -> Int -> a1 -> a2 -> m (Dictionary_ (PrimState m) v1 a1 v2 a2)
+ Data.Vector.Hashtables.Internal: resize :: forall m (v1 :: Type -> Type -> Type) a1 (v2 :: Type -> Type -> Type) a2. (PrimMonad m, MVector v1 a1, MVector v2 a2) => Dictionary_ (PrimState m) v1 a1 v2 a2 -> Int -> Int -> a1 -> a2 -> m (Dictionary_ (PrimState m) v1 a1 v2 a2)
Files
- changelog.md +5/−0
- vector-hashtables.cabal +6/−6
changelog.md view
@@ -1,3 +1,8 @@+# 0.1.1.2 (2023-01-31)++- Relax `hspec` boundaries (see [#14](https://github.com/klapaucius/vector-hashtables/pull/14)).+- Set lower bound for `primtive` (see [#12](https://github.com/klapaucius/vector-hashtables/pull/12)).+ # 0.1.1.1 (2021-09-10) - Optimise `insertWithIndex` function ([#10](https://github.com/klapaucius/vector-hashtables/pull/10)).
vector-hashtables.cabal view
@@ -1,5 +1,5 @@ name: vector-hashtables-version: 0.1.1.1+version: 0.1.1.2 synopsis: Efficient vector-based mutable hashtables implementation. description: This package provides efficient vector-based hashtable implementation similar to .NET Generic Dictionary implementation (at the time of 2015).@@ -9,8 +9,8 @@ license: BSD3 license-file: LICENSE author: klapaucius-maintainer: klapaucius, swamp_agr-copyright: 2016-2021 klapaucius, swamp_agr+maintainer: klapaucius, swamp_agr, ArtemPelenitsyn+copyright: 2016-2023 klapaucius, swamp_agr category: Data build-type: Simple extra-source-files: README.md,@@ -30,7 +30,7 @@ Data.Primitive.PrimArray.Utils ghc-options: -O2 build-depends: base >= 4.7 && < 5- , primitive+ , primitive >= 0.7.1.0 , vector , hashable default-language: Haskell2010@@ -65,12 +65,12 @@ -- Additional dependencies build-depends:- hspec >= 2.6.0 && < 2.8+ hspec >= 2.6.0 && < 2.11 , QuickCheck >= 2.12.6.1 && < 2.15 , quickcheck-instances >= 0.3.19 && < 0.4 build-tool-depends:- hspec-discover:hspec-discover >= 2.6.0 && < 2.8+ hspec-discover:hspec-discover >= 2.6.0 && < 2.11 source-repository head type: git