diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9077250..a9ca53e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,16 @@ Follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) · versioned wi
---
+## [1.13.5] — 2026-07-06
+
+### Added
+- **Search + sort in the Casting sidebar** ("Characters found") — filter by name and sort by line count or alphabetically, matching the same controls added to the Library's character list.
+
+### Fixed
+- **Merging characters could freeze the page long enough to trigger the browser's "Page Unresponsive" dialog** — the merge itself is a fast array loop, but redrawing the whole feed afterward (thousands of DOM rows, each running the highlight regex pass) was one long synchronous block. A spinner overlay alone couldn't fix this — it would freeze right along with everything else in the same JS turn. The redraw is now chunked across animation frames with a real, moving progress bar, so the browser stays responsive and the merge no longer looks like a crash on a large book.
+
+---
+
## [1.13.4] — 2026-07-06
### Added
diff --git a/VERSION b/VERSION
index 80138e7..43ded90 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.13.4
+1.13.5
diff --git a/static/index.html b/static/index.html
index 663f433..4f3f150 100644
--- a/static/index.html
+++ b/static/index.html
@@ -10,7 +10,7 @@
-
+
@@ -27,7 +27,7 @@
-
+
@@ -365,7 +365,7 @@ window.toggleNavTree = function(treeId, chevronId) {
-
+