diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## [0.4.0.1] - 2022-11-05
+
+- Fix inaccurate haddock on `recurring`
+
 ## [0.4.0] - 2022-11-05
 
 - Add `create`
diff --git a/src/TimerWheel.hs b/src/TimerWheel.hs
--- a/src/TimerWheel.hs
+++ b/src/TimerWheel.hs
@@ -158,7 +158,7 @@
   Wheel.insert wheel key delay action
 
 -- | @recurring wheel action delay@ registers an action __@action@__ in timer wheel __@wheel@__ to fire every
--- __@delay@__ seconds (or every /resolution/ seconds, whichever is smaller).
+-- __@delay@__ seconds.
 --
 -- Returns an action that, when called, cancels the recurring timer.
 recurring ::
diff --git a/timer-wheel.cabal b/timer-wheel.cabal
--- a/timer-wheel.cabal
+++ b/timer-wheel.cabal
@@ -1,7 +1,7 @@
 cabal-version: 2.0
 
 name: timer-wheel
-version: 0.4.0
+version: 0.4.0.1
 category: Data
 description:
   This library provides a timer wheel data structure for
@@ -21,7 +21,7 @@
 license: BSD3
 license-file: LICENSE
 build-type: Simple
-tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.1
+tested-with: GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.2
 
 extra-source-files:
   CHANGELOG.md
