diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,20 @@
 # Revision history for quickcheck-silent
 
+## 0.11.0.11 -- 2026-08-18
+
+* The following issue only shows up once distribuited and built with `nix`:
+  ```
+  Warning:
+      This package indirectly depends on multiple versions of the same
+      package. This is very likely to cause a compile failure.
+        package QuickCheck (QuickCheck-2.18.0.0-DOrynHtGkwDJTvEyuDdhMp) requires containers-0.6.8-8162
+        package quickcheck-silent (quickcheck-silent-0.11.0.10) requires containers-0.8-K3knBMiOLoF4ZXMnieGzr8
+  ```
+  Therefore, we are changing the build depencies in `cabal` to:
+  ```
+  containers >= 0.6 && < 1
+  ```
+
 ## 0.11.0.10 -- 2026-08-18
 
 * Added basic test hierarchy capabilities: `suite`, `group` (category) and
diff --git a/quickcheck-silent.cabal b/quickcheck-silent.cabal
--- a/quickcheck-silent.cabal
+++ b/quickcheck-silent.cabal
@@ -10,7 +10,7 @@
 build-type: Simple
                                               
 name: quickcheck-silent
-version: 0.11.0.10
+version: 0.11.0.11
 
 synopsis: Testing with QuickCheck in silence
 description: Testing with QuickCheck in silence. For more info see README.md
@@ -60,7 +60,7 @@
       -- Test
     , QuickCheck >= 2.18     && < 3
       -- JSON
-    , containers >= 0.7      && < 1
+    , containers >= 0.6      && < 1
     , mtl        >= 2.3.1    && < 3
   ghc-options:
       --------------------------------------------------------------------------
