diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,10 @@
 and this project adheres to the
 [Haskell Package Versioning Policy](https://pvp.haskell.org/).
 
+## 0.1.0.1 - 2026-03-07
+
+- Fix package description rendering on Hackage
+
 ## 0.1.0.0 - 2026-03-06
 
 Pure Haskell implementation of cache data structures with three eviction policies:
diff --git a/lfudacaching.cabal b/lfudacaching.cabal
--- a/lfudacaching.cabal
+++ b/lfudacaching.cabal
@@ -1,12 +1,14 @@
 cabal-version: 3.0
 name:          lfudacaching
-version:       0.1.0.0
+version:       0.1.0.1
 synopsis:      Pure LFUDA, GDSF, and LFU cache implementations
 description:
   Pure, immutable cache with three eviction policies:
   .
   * __LFUDA__ — Least Frequently Used with Dynamic Aging
+  .
   * __GDSF__ — Greedy Dual-Size Frequency
+  .
   * __LFU__ — Least Frequently Used
   .
   All operations are /O(log n)/ in the number of cached entries, backed by a
