@@ -4,9 +4,39 @@ What's new in dev-agent. We ship improvements regularly to help AI assistants un
44
55---
66
7+ ## v0.5.1 — Incremental Indexing
8+
9+ * December 3, 2025*
10+
11+ ** ` dev update ` now actually works.** Only re-index files that changed — no more waiting for full re-scans.
12+
13+ ### What's New
14+
15+ ** ⚡ Fast Updates**
16+
17+ ``` bash
18+ dev index . # First run: full index
19+ dev update # Fast! Only processes changes
20+ ```
21+
22+ ** 🔍 Smart Change Detection**
23+
24+ - Detects modified files via content hash
25+ - Finds new files added since last index
26+ - Cleans up documents for deleted files
27+ - Removes orphaned symbols when code changes
28+
29+ ### Why This Matters
30+
31+ Before: Every ` dev index . ` re-scanned your entire codebase. On a 10k file repo, that's 5+ minutes.
32+
33+ Now: ` dev update ` detects what changed and only processes those files. Same result, fraction of the time.
34+
35+ ---
36+
737## v0.5.0 — Modern JavaScript Support
838
9- * Coming soon *
39+ * December 2, 2025 *
1040
1141** Better coverage for how developers actually write code today.**
1242
@@ -48,7 +78,7 @@ Before v0.5.0, searching for "API configuration" wouldn't find `export const API
4878
4979## v0.4.4 — Test File Discovery
5080
51- * Released November 2024 *
81+ * December 1, 2025 *
5282
5383** Search results now show related test files automatically.**
5484
@@ -70,7 +100,7 @@ This helps AI assistants find both implementation *and* tests without extra sear
70100
71101## v0.4.0 — Intelligent Git History
72102
73- * Released November 2024 *
103+ * November 27, 2025 *
74104
75105** Semantic search over your commit history.**
76106
@@ -116,7 +146,7 @@ packages/
116146
117147## v0.3.0 — Code Relationships
118148
119- * Released November 2024 *
149+ * November 26, 2025 *
120150
121151** Understand how your code connects.**
122152
@@ -154,7 +184,7 @@ Hot Paths (most referenced):
154184
155185## v0.1.0 — Initial Release
156186
157- * Released November 2024 *
187+ * November 26, 2025 *
158188
159189** The foundation: local-first code understanding for AI tools.**
160190
@@ -191,7 +221,6 @@ dev mcp install --cursor
191221
192222We're working on:
193223
194- - ** Incremental indexing** — Only re-index changed files
195224- ** More languages** — Better Go and Python support via tree-sitter
196225- ** Parallel search** — Query multiple repos simultaneously
197226
0 commit comments