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
28 changes: 20 additions & 8 deletions pkg/scoop/codebase-memory-mcp.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
{
"version": "0.8.1",
"description": "Fast code intelligence engine — native executable with verified runtime assets",
"homepage": "https://github.com/DeusData/codebase-memory-mcp",
"version": "0.11.0",
"description": "Code intelligence knowledge graph MCP server for AI coding agents",
"homepage": "https://deusdata.github.io/codebase-memory-mcp/",
"license": "MIT",
"notes": "To register this MCP server with your clients, run `codebase-memory-mcp install` after install.",
"architecture": {
"64bit": {
"url": "https://github.com/DeusData/codebase-memory-mcp/releases/download/v0.8.1/codebase-memory-mcp-windows-amd64.zip",
"hash": "a602ad090ed3f49d86c55472f73f27ad7055222806a82358f2e08513e027f00f",
"bin": "codebase-memory-mcp.exe"
"url": "https://github.com/DeusData/codebase-memory-mcp/releases/download/v0.11.0/codebase-memory-mcp-windows-amd64.zip",
"hash": "6eb6beaf261b19e419766e78baf93cbc3cf1c6338cff8fb7c0234859f96d1685"
},
"arm64": {
"url": "https://github.com/DeusData/codebase-memory-mcp/releases/download/v0.11.0/codebase-memory-mcp-windows-arm64.zip",
"hash": "52b29881214fce47d529e098308b1de77c40f6812e20a34d588ee4c25b84fd1a"
}
},
"bin": "codebase-memory-mcp.exe",
"checkver": {
"github": "https://github.com/DeusData/codebase-memory-mcp"
},
Expand All @@ -18,8 +23,15 @@
"64bit": {
"url": "https://github.com/DeusData/codebase-memory-mcp/releases/download/v$version/codebase-memory-mcp-windows-amd64.zip",
"hash": {
"url": "https://github.com/DeusData/codebase-memory-mcp/releases/download/v$version/checksums.txt",
"find": "([a-f0-9]{64})\\s+codebase-memory-mcp-windows-amd64\\.zip"
"url": "$baseurl/checksums.txt",
"find": "([a-f0-9]{64})\\s+codebase-memory-mcp-windows-amd64\\.zip$"
}
},
"arm64": {
"url": "https://github.com/DeusData/codebase-memory-mcp/releases/download/v$version/codebase-memory-mcp-windows-arm64.zip",
"hash": {
"url": "$baseurl/checksums.txt",
"find": "([a-f0-9]{64})\\s+codebase-memory-mcp-windows-arm64\\.zip$"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions tests/test_version_metadata_contract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ SURFACES=(
"pkg/chocolatey/codebase-memory-mcp.nuspec|release"
"pkg/chocolatey/tools/chocolateyInstall.ps1|release"
"pkg/homebrew/Formula/codebase-memory-mcp.rb|pin:0.10.3"
"pkg/scoop/codebase-memory-mcp.json|pin:0.8.1"
"pkg/scoop/codebase-memory-mcp.json|pin:0.11.0"
"pkg/aur/PKGBUILD|pin:0.8.1"
"pkg/aur/.SRCINFO|pin:0.8.1"
)
Expand All @@ -119,7 +119,7 @@ SURFACES=(
# AND every sha256 it pins, then move the entry to "release" above.
PIN_REASONS=(
"pkg/homebrew/Formula/codebase-memory-mcp.rb|pins 4 per-asset sha256 (darwin/linux x arm/intel); last re-pinned for v0.10.3"
"pkg/scoop/codebase-memory-mcp.json|pins the windows-amd64.zip sha256; last re-pinned for v0.8.1"
"pkg/scoop/codebase-memory-mcp.json|pins 2 per-asset sha256 (Windows amd64 + arm64 zip); last re-pinned for v0.11.0"
"pkg/aur/PKGBUILD|pins sha256sums_x86_64 + sha256sums_aarch64; last re-pinned for v0.8.1"
"pkg/aur/.SRCINFO|generated from PKGBUILD, so it must move with it, not before it"
)
Expand Down
Loading