diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 ## Unreleased
 
+## 0.2.0.1 — 2026-07-11
+
+### Other Changes
+
+* Requires `kiroku-store ^>=0.3`. The tracer matches exhaustively on
+  `KirokuEvent`, so it now handles that release's new
+  `KirokuEventPublisherLoopError` constructor; the event is ignored rather than
+  turned into a span, since the publisher loop is not a per-subscription unit of
+  work. No change to `kiroku-otel`'s own API.
+
 ## 0.2.0.0 — 2026-05-31
 
 ### Breaking Changes
diff --git a/kiroku-otel.cabal b/kiroku-otel.cabal
--- a/kiroku-otel.cabal
+++ b/kiroku-otel.cabal
@@ -1,6 +1,6 @@
 cabal-version:   3.0
 name:            kiroku-otel
-version:         0.2.0.0
+version:         0.2.0.1
 synopsis:
   OpenTelemetry W3C trace-context helpers for Kiroku event metadata
 
@@ -50,7 +50,7 @@
     , hs-opentelemetry-api                   ^>=1.0
     , hs-opentelemetry-propagator-w3c        ^>=1.0
     , hs-opentelemetry-semantic-conventions  ^>=1.40
-    , kiroku-store                           ^>=0.2
+    , kiroku-store                           ^>=0.3
     , lens                                   >=5.2   && <5.4
     , text                                   >=2.0   && <2.2
     , unordered-containers                   >=0.2   && <0.3
@@ -76,7 +76,7 @@
     , hs-opentelemetry-sdk                 ^>=1.0
     , hspec                                >=2.10 && <2.12
     , kiroku-otel
-    , kiroku-store                         ^>=0.2
+    , kiroku-store                         ^>=0.3
     , kiroku-test-support
     , lens                                 >=5.2  && <5.4
     , stm                                  >=2.5  && <2.6
diff --git a/src/Kiroku/Otel/Subscription.hs b/src/Kiroku/Otel/Subscription.hs
--- a/src/Kiroku/Otel/Subscription.hs
+++ b/src/Kiroku/Otel/Subscription.hs
@@ -359,6 +359,7 @@
     KirokuEventNotifierReconnecting{} -> pure ()
     KirokuEventNotifierReconnected -> pure ()
     KirokuEventPublisherPoolError{} -> pure ()
+    KirokuEventPublisherLoopError{} -> pure ()
     KirokuEventHardDeleteIssued{} -> pure ()
 
 -- Span / state-cell helpers ---------------------------------------------------
