diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,9 @@
 
 This package intends to follow the [PVP](https://pvp.haskell.org/).
 
+## 0.2.0.1
+- Fix the broken Data.Array.Nested.Trace export list (not compiled by default).
+
 ## 0.2.0.0
 - Many performance improvements to the Haskell code (C code mostly left alone).
 - A few API changes and additions, mostly guided by the performance-improving work.
diff --git a/ox-arrays.cabal b/ox-arrays.cabal
--- a/ox-arrays.cabal
+++ b/ox-arrays.cabal
@@ -1,6 +1,6 @@
 cabal-version:   3.0
 name:            ox-arrays
-version:         0.2.0.0
+version:         0.2.0.1
 synopsis:        An efficient CPU-based multidimensional array (tensor) library
 description:
   An efficient and richly typed CPU-based multidimensional array (tensor)
@@ -10,7 +10,7 @@
   If you use this package: let me know (e.g. via email) if you find it useful!
   Both positive feedback (keep this!) and negative feedback (I needed this but
   ox-arrays doesn't provide it) is welcome.
-copyright:       (c) 2025 Tom Smeding, Mikolaj Konarski
+copyright:       (c) 2025-2026 Tom Smeding, Mikolaj Konarski
 author:          Tom Smeding, Mikolaj Konarski
 maintainer:      Tom Smeding <xhackage@tomsmeding.com>
 license:         BSD-3-Clause
diff --git a/src/Data/Array/Nested/Trace.hs b/src/Data/Array/Nested/Trace.hs
--- a/src/Data/Array/Nested/Trace.hs
+++ b/src/Data/Array/Nested/Trace.hs
@@ -34,17 +34,14 @@
 
   -- * Re-exports from the plain "Data.Array.Nested" module
   Ranked(Ranked),
-  ListR(ZR, (:::)),
   IxR(..), IIxR,
   ShR(..), IShR,
 
   Shaped(Shaped),
-  ListS(ZS, (::$)),
   IxS(..), IIxS,
   ShS(..), KnownShS(..),
 
   Mixed,
-  ListX(ZX, (::%)),
   IxX(..), IIxX,
   ShX(..), KnownShX(..), IShX,
   StaticShX(..),
