stable-maps 0.0.3.3 → 0.0.4
raw patch · 3 files changed
+11/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
System/Mem/StableName/Dynamic/Map.hs view
@@ -1,3 +1,7 @@+{-# LANGUAGE CPP #-}+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Unsafe #-}+#endif module System.Mem.StableName.Dynamic.Map ( Map , empty
System/Mem/StableName/Map.hs view
@@ -1,4 +1,8 @@-module System.Mem.StableName.Map +{-# LANGUAGE CPP #-}+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Unsafe #-}+#endif+module System.Mem.StableName.Map ( Map , empty , null
stable-maps.cabal view
@@ -1,7 +1,7 @@ Name: stable-maps-Version: 0.0.3.3+Version: 0.0.4 Synopsis: Heterogeneous maps keyed by StableNames-Description: Provides an API for inserting heterogeneous data in a collection keyed by StableNames and for later retrieving it.+Description: Provides an unsafe API for inserting heterogeneous data in a collection keyed by StableNames and for later retrieving it. Homepage: http://github.com/ekmett/stable-maps Bug-Reports: http://github.com/ekmett/stable-maps/issues License: BSD3