Skip to content

Commit c9b81b3

Browse files
committed
chore: bump version to 1.0.3
- Updated main package version to 1.0.3 - Updated VS Code extension version to 1.0.3 - Preparing for release with comprehensive testing suite
1 parent 3cf1e8c commit c9b81b3

File tree

2 files changed

+58
-3
lines changed

2 files changed

+58
-3
lines changed

package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,20 @@
3535
"start": "node ./dist/bin.js",
3636
"test": "npx tsx scripts/test-local.ts && npx tsx scripts/test-cli-functions.ts && npx tsx tests/anthropic.spec.ts && npx tsx tests/config.spec.ts",
3737
"test:perf": "tsx tests/perf.spec.ts",
38-
"setup:branding": "node scripts/setup-branding.js"
38+
"setup:branding": "node scripts/setup-branding.js",
39+
"bump:patch": "tsx scripts/bump-version.ts patch",
40+
"bump:minor": "tsx scripts/bump-version.ts minor",
41+
"bump:major": "tsx scripts/bump-version.ts major",
42+
"bump:prerelease": "tsx scripts/bump-version.ts prerelease",
43+
"bump:beta": "tsx scripts/bump-version.ts prerelease --preid beta",
44+
"bump:alpha": "tsx scripts/bump-version.ts prerelease --preid alpha",
45+
"release:patch": "tsx scripts/bump-version.ts patch --push",
46+
"release:minor": "tsx scripts/bump-version.ts minor --push",
47+
"release:major": "tsx scripts/bump-version.ts major --push",
48+
"release:beta": "tsx scripts/bump-version.ts prerelease --preid beta --push",
49+
"lint": "echo 'Linting not configured yet'",
50+
"format:check": "echo 'Prettier check not configured yet'",
51+
"type-check": "tsc --noEmit"
3952
},
4053
"keywords": [
4154
"git",

vscode-extension/package.json

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
"name": "commitweave",
33
"displayName": "CommitWeave",
44
"description": "Smart, structured, and beautiful git commits with AI assistance - by GLINR STUDIOS",
5-
"version": "1.0.2",
5+
"version": "1.0.3",
66
"publisher": "glincker",
7+
"icon": "assets/icon.png",
78
"engines": {
89
"vscode": "^1.80.0"
910
},
@@ -21,7 +22,9 @@
2122
"activationEvents": [
2223
"onCommand:commitweave.create",
2324
"onCommand:commitweave.ai",
24-
"onCommand:commitweave.configure"
25+
"onCommand:commitweave.configure",
26+
"onCommand:commitweave.quickCommit",
27+
"onCommand:commitweave.validateCommit"
2528
],
2629
"main": "./out/src/extension.js",
2730
"contributes": {
@@ -40,8 +43,47 @@
4043
"command": "commitweave.configure",
4144
"title": "CommitWeave: Configure",
4245
"category": "CommitWeave"
46+
},
47+
{
48+
"command": "commitweave.quickCommit",
49+
"title": "CommitWeave: Quick Commit",
50+
"category": "CommitWeave",
51+
"icon": "$(git-commit)"
52+
},
53+
{
54+
"command": "commitweave.validateCommit",
55+
"title": "CommitWeave: Validate Last Commit",
56+
"category": "CommitWeave",
57+
"icon": "$(check-all)"
4358
}
4459
],
60+
"menus": {
61+
"scm/title": [
62+
{
63+
"command": "commitweave.quickCommit",
64+
"group": "navigation",
65+
"when": "scmProvider == git"
66+
}
67+
],
68+
"commandPalette": [
69+
{
70+
"command": "commitweave.create",
71+
"when": "gitOpenRepositoryCount != 0"
72+
},
73+
{
74+
"command": "commitweave.ai",
75+
"when": "gitOpenRepositoryCount != 0"
76+
},
77+
{
78+
"command": "commitweave.quickCommit",
79+
"when": "gitOpenRepositoryCount != 0"
80+
},
81+
{
82+
"command": "commitweave.validateCommit",
83+
"when": "gitOpenRepositoryCount != 0"
84+
}
85+
]
86+
},
4587
"configuration": {
4688
"type": "object",
4789
"title": "CommitWeave",

0 commit comments

Comments
 (0)