Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
},
"metadata": {
"description": "Task Journal — append-only reasoning chain memory for AI-coding tasks",
"version": "0.7.0"
"version": "0.12.0"
},
"plugins": [
{
"name": "task-journal",
"source": "./plugin",
"description": "Append-only journal of AI-coding task reasoning chains. Captures hypotheses, decisions, rejections, evidence — renders compact resume packs so an agent can pick up a 2-week-old task with full context.",
"version": "0.7.0",
"version": "0.12.0",
"author": {
"name": "Digital-Threads"
},
Expand Down
12 changes: 11 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,21 @@ cargo fmt --all --check

# Bump version в Cargo.toml workspace (раз — все crates наследуют через version.workspace = true)
# Edit Cargo.toml: version = "0.1.1" (или 0.2.0, 1.0.0, etc.)
git add Cargo.toml
#
# ВАЖНО: версия плагина НЕ наследуется из Cargo.toml — синхронь вручную, иначе
# `/plugin update` будет показывать старую версию (см. историю: 0.10.3 vs 0.12.0).
# Обнови до той же версии:
# - plugin/.claude-plugin/plugin.json → "version"
# - .claude-plugin/marketplace.json → metadata.version И plugins[0].version
git add Cargo.toml plugin/.claude-plugin/plugin.json .claude-plugin/marketplace.json
git commit -m "chore: bump version to v0.1.1"
git push
```

> **Не забудь тег.** Версия в `Cargo.toml` сама по себе НЕ публикует. crates.io и
> GitHub Release триггерит только push тега `vX.Y.Z` (шаг 2). Если бампнул версию
> в feature-PR и смёржил без тега — релиз НЕ вышел, crates.io отстанет.

### 2. Tag + push

```bash
Expand Down
2 changes: 1 addition & 1 deletion plugin/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "task-journal",
"version": "0.10.3",
"version": "0.12.0",
"description": "Append-only journal of AI-coding task reasoning chains: hypotheses, decisions, rejections, evidence. Renders compact resume packs so an agent can pick up a 2-week-old task with full context.",
"author": {
"name": "Mher Shahinyan"
Expand Down
Loading