diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,10 @@
 Changelog for lol-benches project
 ================================
 
+0.0.0.2
+-----
+ * Import Control.Monad.Random hiding `lift` to support MonadRandom-0.5.1.
+
 0.0.0.1
 -----
  * Initial commit: moved benchmarks from package lol to lol-benches.
diff --git a/Crypto/Lol/Benchmarks/CycBenches.hs b/Crypto/Lol/Benchmarks/CycBenches.hs
--- a/Crypto/Lol/Benchmarks/CycBenches.hs
+++ b/Crypto/Lol/Benchmarks/CycBenches.hs
@@ -23,7 +23,7 @@
 module Crypto.Lol.Benchmarks.CycBenches (cycBenches1, cycBenches2) where
 
 import Control.Applicative
-import Control.Monad.Random
+import Control.Monad.Random hiding (lift)
 
 import Crypto.Lol
 import Crypto.Lol.Benchmarks
diff --git a/Crypto/Lol/Benchmarks/TensorBenches.hs b/Crypto/Lol/Benchmarks/TensorBenches.hs
--- a/Crypto/Lol/Benchmarks/TensorBenches.hs
+++ b/Crypto/Lol/Benchmarks/TensorBenches.hs
@@ -23,7 +23,7 @@
 module Crypto.Lol.Benchmarks.TensorBenches (tensorBenches1, tensorBenches2) where
 
 import Control.Applicative
-import Control.Monad.Random
+import Control.Monad.Random hiding (lift)
 
 import Crypto.Lol.Benchmarks
 import Crypto.Lol.Prelude
diff --git a/Crypto/Lol/Benchmarks/UCycBenches.hs b/Crypto/Lol/Benchmarks/UCycBenches.hs
--- a/Crypto/Lol/Benchmarks/UCycBenches.hs
+++ b/Crypto/Lol/Benchmarks/UCycBenches.hs
@@ -23,7 +23,7 @@
 module Crypto.Lol.Benchmarks.UCycBenches (ucycBenches1, ucycBenches2) where
 
 import Control.Applicative
-import Control.Monad.Random
+import Control.Monad.Random hiding (lift)
 
 import Crypto.Lol.Benchmarks
 import Crypto.Lol.Cyclotomic.Tensor (TElt)
diff --git a/lol-benches.cabal b/lol-benches.cabal
--- a/lol-benches.cabal
+++ b/lol-benches.cabal
@@ -5,7 +5,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.0.0.1
+version:             0.0.0.2
 synopsis:            A library for benchmarking <https://hackage.haskell.org/package/lol Λ ∘ λ>.
 homepage:            https://github.com/cpeikert/Lol
 Bug-Reports:         https://github.com/cpeikert/Lol/issues
