diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Revision history for castagnoli
 
+## 0.2.0.1 -- 2023-08-22
+
+* Allow newer primitive
+* Remove dep on primitive-unlifted
+
 ## 0.2.0.0 -- 2023-05-01
 
 * Remove dependency on primitive-slice.
diff --git a/castagnoli.cabal b/castagnoli.cabal
--- a/castagnoli.cabal
+++ b/castagnoli.cabal
@@ -1,6 +1,6 @@
 cabal-version: 2.2
 name: castagnoli
-version: 0.2.0.0
+version: 0.2.0.1
 synopsis: Portable CRC-32C
 description: Portable implementation of CRC-32C.
 homepage: https://github.com/andrewthad/castagnoli
@@ -20,8 +20,7 @@
     Crc32c.Table
   build-depends:
     , base >=4.12.0.0 && <5
-    , primitive >=0.7 && <0.8
-    , primitive-unlifted >=0.1 && <0.2
+    , primitive >=0.7 && <0.10
     , byteslice >=0.1.1 && <0.3
   hs-source-dirs: src
   ghc-options: -O2 -Wall
