codebase-memory-mcp 0.8.1__tar.gz → 0.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codebase_memory_mcp-0.8.1 → codebase_memory_mcp-0.9.0}/.gitignore +10 -0
- {codebase_memory_mcp-0.8.1 → codebase_memory_mcp-0.9.0}/PKG-INFO +1 -1
- {codebase_memory_mcp-0.8.1 → codebase_memory_mcp-0.9.0}/pyproject.toml +1 -1
- {codebase_memory_mcp-0.8.1 → codebase_memory_mcp-0.9.0}/src/codebase_memory_mcp/_cli.py +1 -1
- {codebase_memory_mcp-0.8.1 → codebase_memory_mcp-0.9.0}/README.md +0 -0
- {codebase_memory_mcp-0.8.1 → codebase_memory_mcp-0.9.0}/src/codebase_memory_mcp/__init__.py +0 -0
- {codebase_memory_mcp-0.8.1 → codebase_memory_mcp-0.9.0}/src/codebase_memory_mcp/__main__.py +0 -0
|
@@ -56,3 +56,13 @@ CHANGELOG.md
|
|
|
56
56
|
|
|
57
57
|
# Soak test output
|
|
58
58
|
soak-results/
|
|
59
|
+
|
|
60
|
+
# LSP originality-check reference cache (scripts/check-lsp-originality.sh)
|
|
61
|
+
.lsp-refs/
|
|
62
|
+
|
|
63
|
+
# Local npm cache
|
|
64
|
+
graph-ui/.npm-cache-local/
|
|
65
|
+
|
|
66
|
+
# Python bytecode from tests/windows/ harness
|
|
67
|
+
__pycache__/
|
|
68
|
+
*.pyc
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codebase-memory-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.0
|
|
4
4
|
Summary: Fast code intelligence engine for AI coding agents — single static binary MCP server
|
|
5
5
|
Project-URL: Homepage, https://github.com/DeusData/codebase-memory-mcp
|
|
6
6
|
Project-URL: Repository, https://github.com/DeusData/codebase-memory-mcp
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codebase-memory-mcp"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.9.0"
|
|
8
8
|
description = "Fast code intelligence engine for AI coding agents — single static binary MCP server"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|