packages feed

ttrie 0.1.2.1 → 0.1.2.2

raw patch · 3 files changed

+15/−7 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,10 +1,17 @@+# 0.1.2.2 (October 2021)++* Fix clashing import from `primitive-0.7.3.0`+ # 0.1.2.1 (November 2015)-	* Eliminate a redundant import warning on GHC 7.10-	* Loosen test-suite dependency bounds+  +* Eliminate a redundant import warning on GHC 7.10+* Loosen test-suite dependency bounds  # 0.1.2  (May 2015)-    * Add a 'member' convenience function+  +* Add a `member` convenience function  # 0.1.1  (April 2015)-	* Add 'fromList' and 'unsafeToList' functions-	* Add basic tests++* Add `fromList` and `unsafeToList` functions+* Add basic tests
src/Data/SparseArray.hs view
@@ -14,7 +14,7 @@ import Data.Bits import Data.Hashable (Hashable) import qualified Data.Hashable as H-import Data.Primitive.Array+import Data.Primitive.Array hiding (emptyArray) import Data.Word import Prelude hiding (lookup, mapM) 
ttrie.cabal view
@@ -1,5 +1,5 @@ name:                ttrie-version:             0.1.2.1+version:             0.1.2.2 synopsis:            Contention-free STM hash map description:   A contention-free STM hash map.@@ -45,6 +45,7 @@   hs-source-dirs:    tests   main-is:           MapProperties.hs   type:              exitcode-stdio-1.0+  default-language:  Haskell2010    build-depends:       base