diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
 # Revision history for snappy-c
 
+## 0.1.2 -- 2025-11-15
+
+* Depend on `crc32c` rather than `digest` [#6, Mateusz Galazyn]
+
+## 0.1.1 -- 2024-04-10
+
+* Lower bound on `bytestring` to 0.10
+
 ## 0.1.0 -- 2024-02-09
 
-* First version. Released on an unsuspecting world.
+* First public release
diff --git a/snappy-c.cabal b/snappy-c.cabal
--- a/snappy-c.cabal
+++ b/snappy-c.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               snappy-c
-version:            0.1.1
+version:            0.1.2
 synopsis:           Bindings to Google's Snappy: A fast compression library
 description:        [Snappy](https://github.com/google/snappy) is a fast
                     (de)compression library. It is written in C++, but a basic
@@ -20,8 +20,10 @@
 tested-with:        GHC==8.10.7
                   , GHC==9.2.8
                   , GHC==9.4.8
-                  , GHC==9.6.4
-                  , GHC==9.8.2
+                  , GHC==9.6.7
+                  , GHC==9.8.4
+                  , GHC==9.10.3
+                  , GHC==9.12.2
 
 source-repository head
   type:     git
@@ -34,7 +36,7 @@
       -Wprepositive-qualified-module
       -Widentities
   build-depends:
-      base >= 4.14 && < 4.20
+      base >= 4.14 && < 4.22
   default-language:
       Haskell2010
   default-extensions:
@@ -78,8 +80,8 @@
       Codec.Compression.SnappyC.Internal.Util
   build-depends:
     , bytestring   >= 0.10  && < 0.13
-    , data-default >= 0.7   && < 0.8
-    , digest       >= 0.0.2 && < 0.0.3
+    , data-default >= 0.7   && < 0.9
+    , crc32c       >= 0.2.2 && < 0.3
     , mtl          >= 2.2.2 && < 2.4
   extra-libraries:
     , snappy
@@ -96,8 +98,8 @@
 
     , bytestring           >= 0.10  && < 0.13
     , conduit              >= 1.3.5 && < 1.4
-    , data-default         >= 0.7   && < 0.8
-    , optparse-applicative >= 0.18  && < 0.19
+    , data-default         >= 0.7   && < 0.9
+    , optparse-applicative >= 0.18  && < 0.20
   ghc-options:
       -threaded
       -rtsopts
@@ -122,7 +124,7 @@
     , bytestring       >= 0.10 && < 0.13
     , tasty            >= 1.5  && < 1.6
     , tasty-hunit      >= 0.10 && < 0.11
-    , tasty-quickcheck >= 0.10 && < 0.11
+    , tasty-quickcheck >= 0.10 && < 0.12
   ghc-options:
       -threaded
       -rtsopts
@@ -142,7 +144,7 @@
     , bytestring  >= 0.10  && < 0.13
     , criterion   >= 1.6.3 && < 1.7
     , deepseq     >= 1.4   && < 1.6
-    , random      >= 1.2.1 && < 1.3
+    , random      >= 1.2.1 && < 1.4
     , snappy-lazy >= 0.1   && < 0.2
     , zlib        >= 0.6.3 && < 0.8
 
