Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lumen",
"version": "0.0.9",
"version": "0.0.10",
"description": "Precise local semantic code search via MCP. Indexes your codebase with Go AST parsing, embeds with Ollama or LM Studio, and exposes vector search to Claude through an MCP server — no cloud, no npm.",
"author": {
"name": "Ory Corp",
Expand All @@ -20,7 +20,9 @@
"mcpServers": {
"lumen": {
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/run.sh",
"args": ["stdio"]
"args": [
"stdio"
]
}
}
}
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.9"
".": "0.0.10"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.0.10](https://github.com/ory/lumen/compare/v0.0.9...v0.0.10) (2026-03-10)


### Features

* better benchmarks with swe-bench approach and improved chunker ([#34](https://github.com/ory/lumen/issues/34)) ([c722d66](https://github.com/ory/lumen/commit/c722d66cc6405a3c838af3ec6d725f42b62bffec))
* **chunker:** add C# language support ([915e917](https://github.com/ory/lumen/commit/915e917af528109e77be8a48195758c61b43be7e))


### Bug Fixes

* update guidance for reindexing the Lumen index ([f08c3b9](https://github.com/ory/lumen/commit/f08c3b959bb7a0ff9c74b364d522dbd476e84466))

## [0.0.9](https://github.com/ory/lumen/compare/v0.0.8...v0.0.9) (2026-03-04)


Expand Down