From a9d0746f6d1b25acf0cb3ed727ea4f2764b6ea57 Mon Sep 17 00:00:00 2001 From: Balaji Janakiram Date: Mon, 13 Apr 2026 11:52:57 +0530 Subject: [PATCH] Bump version to v1.3.0 Co-Authored-By: Claude Opus 4.6 (1M context) --- .claude-plugin/marketplace.json | 2 +- CHANGELOG.md | 7 +++++++ src/.claude-plugin/plugin.json | 2 +- src/decision/_version.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index be32922..e0274c0 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -12,7 +12,7 @@ "name": "decisions", "source": "./src", "description": "Decision memory for Claude Code — captures why choices were made so future sessions inherit context instead of repeating debates.", - "version": "1.2.1", + "version": "1.3.0", "license": "MIT", "keywords": [ "memory", "decisions", "reasoning", "context", diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b8fcfc..82ab5b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## 1.3.0 — 2026-04-13 + +### Features +- **Superpowers integration** — auto-detects the [Superpowers](https://github.com/obra/superpowers) plugin and seeds 8 methodology decisions (TDD, design-first, systematic debugging, subagent-driven development, git worktrees, verification-before-completion, detailed plans, spec-before-quality) +- **Decision extraction from specs/plans** — scans Superpowers spec and plan files (`docs/superpowers/specs/`, `docs/superpowers/plans/`) for trade-offs and approach choices, nudges the agent to capture them as decisions on first implementation edit +- General `SeedRegistry` pattern for plugin-aware decision seeding, extensible to other plugins + ## 1.1.1 — 2026-04-06 ### Fixes diff --git a/src/.claude-plugin/plugin.json b/src/.claude-plugin/plugin.json index 189b023..ee81829 100644 --- a/src/.claude-plugin/plugin.json +++ b/src/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "decisions", - "version": "1.2.1", + "version": "1.3.0", "description": "Gives your codebase a memory for why. Captures decisions automatically, surfaces them when you edit affected files.", "author": { "name": "Zima Labs", diff --git a/src/decision/_version.py b/src/decision/_version.py index 24f0290..eeb22a3 100644 --- a/src/decision/_version.py +++ b/src/decision/_version.py @@ -4,4 +4,4 @@ Or just run: scripts/bump-version.sh """ -__version__ = "1.2.1" +__version__ = "1.3.0"