diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -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
diff --git a/src/Data/SparseArray.hs b/src/Data/SparseArray.hs
--- a/src/Data/SparseArray.hs
+++ b/src/Data/SparseArray.hs
@@ -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)
 
diff --git a/ttrie.cabal b/ttrie.cabal
--- a/ttrie.cabal
+++ b/ttrie.cabal
@@ -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
