vector-hashtables 0.1.1.3 → 0.1.1.4
raw patch · 2 files changed
+6/−2 lines, 2 filesdep ~QuickCheckPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: QuickCheck
API changes (from Hackage documentation)
- Data.Vector.Hashtables.Internal: resize :: forall {m} {v :: Type -> TYPE LiftedRep -> TYPE LiftedRep} {p} {v :: Type -> TYPE LiftedRep -> TYPE LiftedRep} {p}. (PrimMonad m, MVector v p, MVector v p) => Dictionary_ (PrimState m) v p v p -> Int -> Int -> p -> p -> m (Dictionary_ (PrimState m) v p v p)
+ 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 +4/−0
- vector-hashtables.cabal +2/−2
changelog.md view
@@ -1,3 +1,7 @@+# 0.1.1.4 (2023-12-13)++* Add `wasm32` support (see [#20](https://github.com/klapaucius/vector-hashtables/pull/20)).+ # 0.1.1.3 (2023-04-23) * cleanup the cabal file
vector-hashtables.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.0 name: vector-hashtables-version: 0.1.1.3+version: 0.1.1.4 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).@@ -27,7 +27,7 @@ GHC == 8.6.5 library- if arch(i386)+ if arch(i386) || arch(wasm32) hs-source-dirs: src, src-i386 else hs-source-dirs: src, src-gen