Skip to content

Commit b9cb0a1

Browse files
committed
chore: bump v0.15.2
1 parent 312886d commit b9cb0a1

4 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.15.2] — 2026-04-07
4+
5+
### Fixed
6+
- Relation decay modifier was inverted: connected memories decayed faster instead of slower (highlyConnectedMultiplier 0.35→2.5, connectedMultiplier 0.5→1.8, isolatedMultiplier 1.3→0.8)
7+
- Type filter leaked through relation expansion in search — filtered searches could return wrong-type memories via related links
8+
39
## [0.15.1] — 2026-04-06
410

511
### Changed

docs/content/docs/changelog.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ description: Release history for Claude Launchpad.
55

66
{/* Auto-generated from CHANGELOG.md - do not edit directly */}
77

8+
## [0.15.2] — 2026-04-07
9+
10+
### Fixed
11+
- Relation decay modifier was inverted: connected memories decayed faster instead of slower (highlyConnectedMultiplier 0.35→2.5, connectedMultiplier 0.5→1.8, isolatedMultiplier 1.3→0.8)
12+
- Type filter leaked through relation expansion in search — filtered searches could return wrong-type memories via related links
13+
814
## [0.15.1] — 2026-04-06
915

1016
### Changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-launchpad",
3-
"version": "0.15.1",
3+
"version": "0.15.2",
44
"description": "CLI toolkit for Claude Code — scaffold CLAUDE.md, diagnose config, enforce hooks, test with eval, add persistent memory",
55
"type": "module",
66
"bin": {

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { fileExists } from "./lib/fs-utils.js";
1010
const program = new Command()
1111
.name("claude-launchpad")
1212
.description("CLI toolkit that makes Claude Code setups measurably good")
13-
.version("0.15.1", "-v, --version")
13+
.version("0.15.2", "-v, --version")
1414
.action(async () => {
1515
// Default behavior: detect existing config and route accordingly
1616
const hasConfig = await fileExists(join(process.cwd(), "CLAUDE.md"))

0 commit comments

Comments
 (0)