diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
 # Revision history for eventuo11y-batteries
 
-## 0.2.0.3 -- 2022-10-04
+## 0.2.1.0 -- 2022-10-04
 
-eventuo11y bump
+Fixing missing scheduleCrash export
 
 ## 0.2.0.2 -- 2022-10-03
 
diff --git a/eventuo11y-batteries.cabal b/eventuo11y-batteries.cabal
--- a/eventuo11y-batteries.cabal
+++ b/eventuo11y-batteries.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               eventuo11y-batteries
-version:            0.2.0.3
+version:            0.2.1.0
 synopsis:           Grab bag of eventuo11y-enriched functionality
 description:
   Miscellaneous helpers for instrumenting with [eventuo11y](https://hackage.haskell.org/package/eventuo11y) and 3rd-party packages.
@@ -32,7 +32,7 @@
     , bytestring           >=0.10 && <0.12
     , case-insensitive     ^>=1.2
     , containers           ^>=0.6
-    , eventuo11y           >=0.2  && <0.5
+    , eventuo11y           >=0.2  && <0.4
     , exceptions           ^>=0.10
     , http-media           ^>=0.8
     , http-types           ^>=0.12
diff --git a/src/Observe/Event/Crash.hs b/src/Observe/Event/Crash.hs
--- a/src/Observe/Event/Crash.hs
+++ b/src/Observe/Event/Crash.hs
@@ -18,7 +18,7 @@
 -- after all open requests have been serviced.
 module Observe.Event.Crash
   ( withScheduleCrash,
-    ScheduleCrash,
+    ScheduleCrash (..),
     DoCrash,
     hoistScheduleCrash,
 
@@ -48,7 +48,10 @@
      in withEvent backend' Crashing $ const crash
 
 -- | Function to schedule an application crash.
-newtype ScheduleCrash m r = ScheduleCrash {schedule :: forall r'. EventBackendModifiers r r' -> m ()}
+newtype ScheduleCrash m r = ScheduleCrash
+  { -- | Schedule a crash
+    schedule :: forall r'. EventBackendModifiers r r' -> m ()
+  }
 
 -- | Function to actually initiate the crash.
 type DoCrash m = m ()
