mirror of
https://github.com/obra/superpowers.git
synced 2026-04-23 09:59:05 +08:00
Bump version to 2.0.2
Bug fix release: - Fixed false warning when local skills repo is ahead of upstream - Added release notes for 2.0.1 and 2.0.2
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "superpowers",
|
"name": "superpowers",
|
||||||
"description": "Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques",
|
"description": "Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jesse Vincent",
|
"name": "Jesse Vincent",
|
||||||
"email": "jesse@fsck.com"
|
"email": "jesse@fsck.com"
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
# Superpowers Release Notes
|
||||||
|
|
||||||
|
## v2.0.2 (2025-10-12)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- **Fixed false warning when local skills repo is ahead of upstream** - The initialization script was incorrectly warning "New skills available from upstream" when the local repository had commits ahead of upstream. The logic now correctly distinguishes between three git states: local behind (should update), local ahead (no warning), and diverged (should warn).
|
||||||
|
|
||||||
|
## v2.0.1 (2025-10-12)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- **Fixed session-start hook execution in plugin context** (#8, PR #9) - The hook was failing silently with "Plugin hook error" preventing skills context from loading. Fixed by:
|
||||||
|
- Using `${BASH_SOURCE[0]:-$0}` fallback when BASH_SOURCE is unbound in Claude Code's execution context
|
||||||
|
- Adding `|| true` to handle empty grep results gracefully when filtering status flags
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
# Superpowers v2.0.0 Release Notes
|
# Superpowers v2.0.0 Release Notes
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|||||||
Reference in New Issue
Block a user