Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

Commit 7178cd1

Browse files
committed
chore: bump version to 0.3.0
- Update __version__ in __init__.py - Update plugin.json and marketplace.json - Update skill versions (memory-assistant, memory-recall) - Add v0.3.0 section to CHANGELOG.md
1 parent da79eff commit 7178cd1

6 files changed

Lines changed: 9 additions & 6 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
{
1111
"name": "memory-capture",
1212
"description": "Git-backed memory system for Claude Code. Captures decisions, learnings, and context as git notes with semantic search and automatic recall.",
13-
"version": "0.1.0",
13+
"version": "0.3.0",
1414
"author": {
1515
"name": "Robert Allen",
1616
"email": "zircote@gmail.com"

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.0] - 2025-12-19
11+
1012
### Added
1113

1214
#### Claude Code Hooks Integration
@@ -150,5 +152,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
150152
- Developer Guide with full API reference
151153
- README with quick start
152154

153-
[unreleased]: https://github.com/zircote/git-notes-memory/compare/v0.1.0...HEAD
155+
[unreleased]: https://github.com/zircote/git-notes-memory/compare/v0.3.0...HEAD
156+
[0.3.0]: https://github.com/zircote/git-notes-memory/compare/v0.1.0...v0.3.0
154157
[0.1.0]: https://github.com/zircote/git-notes-memory/releases/tag/v0.1.0

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "memory-capture",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Git-backed memory system for Claude Code. Captures decisions, learnings, and context as git notes with semantic search and automatic recall.",
55
"author": {
66
"name": "Robert Allen",

skills/memory-assistant/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: >
1010
asks about past work ("what did we decide", "why did we", "how did we solve", "remember when", "previously"),
1111
requests memory operations ("capture this", "remember this", "save this decision", "recall", "search memories"),
1212
or starts work on topics with likely stored context ("working on authentication", "implementing database", "debugging").
13-
version: 0.2.0
13+
version: 0.3.0
1414
allowed-tools:
1515
- Bash
1616
- Read

skills/memory-recall/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: memory-recall
33
description: This skill should be used when the user asks about "past decisions", "previous learnings", "what did we decide", "how did we solve", "remember when", or mentions topics that may have stored memories. Also triggers when working on tasks where historical context would be valuable, such as "working on authentication", "implementing the database", or encountering errors similar to previously resolved issues.
4-
version: 0.1.0
4+
version: 0.3.0
55
allowed-tools:
66
- Bash
77
- Read

src/git_notes_memory/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
from __future__ import annotations
2424

25-
__version__ = "0.2.0"
25+
__version__ = "0.3.0"
2626

2727
# Lazy imports to avoid loading embedding model at import time
2828
__all__ = [

0 commit comments

Comments
 (0)