Skip to content

Commit 6900157

Browse files
chore(release): bump version to v0.4.0
1 parent c9fc140 commit 6900157

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.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": "upkeep",
33
"description": "AI-powered maintenance workflows for JS/TS repos: security audits, dependency upgrades, and quality scoring. Requires the `upkeep` CLI on PATH (brew install llbbl/tap/upkeep).",
4-
"version": "0.3.0",
4+
"version": "0.4.0",
55
"author": {
66
"name": "Logan Lindquist Land",
77
"email": "logan.lindquist@gmail.com"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "upkeep",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"type": "module",
55
"description": "A JS/TS repository maintenance toolkit built with Bun",
66
"main": "./src/cli/index.ts",

skills/audit/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: audit
3-
version: 0.3.0
3+
version: 0.4.0
44
description: Security audit with fix recommendations for JS/TS projects
55
allowed-tools: Bash, Read, Grep, Glob, Edit
66
---

skills/deps/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: deps
3-
version: 0.3.0
3+
version: 0.4.0
44
description: Upgrade JS/TS dependencies with risk assessment and Dependabot PR integration
55
allowed-tools: Bash, Read, Grep, Glob, Edit
66
---

skills/quality/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: quality
3-
version: 0.3.0
3+
version: 0.4.0
44
description: Generate and improve code quality scores for JS/TS projects
55
allowed-tools: Bash, Read, Grep, Glob, Edit
66
---

src/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Examples:
3737
upkeep risk next --from 14.0.0 --to 15.0.0
3838
`;
3939

40-
const VERSION = "0.3.0";
40+
const VERSION = "0.4.0";
4141

4242
type CommandHandler = (args: string[]) => Promise<void>;
4343

0 commit comments

Comments
 (0)