diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for snappy-hs
 
-## 0.1.0.0 -- YYYY-mm-dd
+## 0.1.0.1 -- 2025-08-17
 
-* First version. Released on an unsuspecting world.
+* Loosen version bounds for bytestring and vector.
+
+## 0.1.0.0 -- 2025-08-16
+
+* Compress and decompress raw snappy
diff --git a/snappy-hs.cabal b/snappy-hs.cabal
--- a/snappy-hs.cabal
+++ b/snappy-hs.cabal
@@ -1,7 +1,7 @@
 cabal-version:      3.0
 name:               snappy-hs
-version:            0.1.0.0
-synopsis:           A pure Haskell implementation of the Snappy compression spec.
+version:            0.1.0.1
+synopsis:           Snappy compression library.
 description:        A pure Haskell implementation of the Snappy compression spec.
 license:            MIT
 license-file:       LICENSE
@@ -21,8 +21,8 @@
     exposed-modules:  Snappy
 
     build-depends:    base >=4.11 && <5
-                    , bytestring ^>= 0.12
-                    , vector ^>= 0.13
+                    , bytestring >= 0.11 && <= 0.13
+                    , vector >= 0.12 && <= 0.13.2
     hs-source-dirs:   src
     default-language: Haskell2010
 
@@ -31,7 +31,7 @@
     main-is:          Main.hs
     build-depends:
         base >=4.11 && <5,
-        bytestring ^>= 0.12,
+        bytestring >= 0.11 && <= 0.13,
         snappy-hs
 
     hs-source-dirs:   app
@@ -55,7 +55,7 @@
 --     hs-source-dirs: benchmark
 --     build-depends: base >= 4.17.2.0 && < 4.22,
 --                    criterion >= 1 && <= 1.6.4.0,
---                    bytestring ^>= 0.12,
+--                    bytestring >= 0.11 && <= 0.13,
 --                    snappy ^>= 0.2,
 --                    snappy-hs
 --     default-language: Haskell2010
