local-memory-mcp 1.0.9-a → 1.0.9

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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Local Memory MCP Server
2
2
 
3
- **Version 1.0.9a** - Enterprise-ready AI memory system with Anthropic-aligned tool consolidation and intelligent optimization. **HOTFIX**: Fixed critical SQLite migration bug causing infinite loop on fresh installations.
3
+ **Version 1.0.9** - Enterprise-ready AI memory system with Anthropic-aligned tool consolidation and intelligent optimization.
4
4
 
5
5
  Local Memory transforms AI interactions with persistent, searchable memory that grows smarter over time. This package provides everything needed for production deployments with Claude Desktop, Cursor, and other MCP-compatible tools.
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-memory-mcp",
3
- "version": "1.0.9a",
3
+ "version": "1.0.9",
4
4
  "description": "Local Memory MCP Server - AI-powered persistent memory system for Claude Desktop and other MCP-compatible tools",
5
5
  "keywords": [
6
6
  "mcp",
@@ -16,7 +16,7 @@ const os = require('os');
16
16
  const { execSync } = require('child_process');
17
17
 
18
18
  // Configuration
19
- const GITHUB_RELEASES_BASE = 'https://github.com/danieleugenewilliams/local-memory-releases/releases/download/v1.0.9a';
19
+ const GITHUB_RELEASES_BASE = 'https://github.com/danieleugenewilliams/local-memory-releases/releases/latest/download';
20
20
 
21
21
  // Get expected version from package.json
22
22
  const packageJsonPath = path.join(__dirname, '..', 'package.json');