codebase-memory-mcp 0.8.0__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.
@@ -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.8.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.8.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" }
@@ -111,7 +111,7 @@ def _version() -> str:
111
111
  from importlib.metadata import version
112
112
  return version("codebase-memory-mcp")
113
113
  except Exception:
114
- return "0.6.0"
114
+ return "0.8.1"
115
115
 
116
116
 
117
117
  def _os_name() -> str: