Skip to content

Commit 7c087de

Browse files
backnotpropclaude
andcommitted
Bump version to 0.2.1 and fix dynamic version display
- Update version to 0.2.1 in package.json and plugin.json - Fix hardcoded v0.1 in App.tsx to use dynamic __APP_VERSION__ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 7ec2937 commit 7c087de

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/hook/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "plannotator",
33
"description": "Interactive Plan Review: Mark up and refine your plans using a UI, easily share for team collaboration, automatically integrates with plan mode hooks.",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"author": {
66
"name": "backnotprop"
77
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plannotator",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"private": true,
55
"description": "Interactive Plan Review for Claude Code - annotate plans visually, share with team, automatically send feedback",
66
"author": "backnotprop",

packages/editor/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ const App: React.FC = () => {
356356
>
357357
<span className="text-sm font-semibold tracking-tight">Plannotator</span>
358358
</a>
359-
<span className="text-xs text-muted-foreground font-mono opacity-60 hidden md:inline">v0.1</span>
359+
<span className="text-xs text-muted-foreground font-mono opacity-60 hidden md:inline">v{typeof __APP_VERSION__ !== 'undefined' ? __APP_VERSION__ : '0.0.0'}</span>
360360
</div>
361361

362362
<div className="flex items-center gap-1 md:gap-2">

0 commit comments

Comments
 (0)