Skip to content

Commit

Permalink
Update version to 0.6.0 in manifest.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ckt1031 committed Feb 21, 2024
1 parent f73c3a2 commit 70d71c2
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 57 deletions.
5 changes: 0 additions & 5 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,5 @@
},
"organizeImports": {
"enabled": true
},
"json": {
"formatter": {
"enabled": true
}
}
}
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"isDesktopOnly": false,
"minAppVersion": "1.0.0",
"name": "WordWise",
"version": "0.5.2"
"version": "0.6.0"
}
100 changes: 50 additions & 50 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
{
"name": "obsidian-wordwise-plugin",
"version": "0.5.2",
"private": true,
"description": "Writing companion for AI content generation.",
"license": "MIT",
"author": "ckt1031",
"main": "main.js",
"scripts": {
"build": "bun esbuild.config.ts production",
"dev": "bun esbuild.config.ts",
"format": "biome format . --write",
"lint": "tsc --noEmit --skipLibCheck && biome check .",
"lint:fix": "tsc --noEmit --skipLibCheck && biome check --apply .",
"test": "vitest run",
"version": "bun version-bump.ts && biome format manifest.json versions.json --write && git add manifest.json versions.json",
"prepare": "husky || true",
"lint-staged": "lint-staged"
},
"dependencies": {
"@anthropic-ai/sdk": "0.14.0",
"@google/generative-ai": "0.2.1",
"cohere-ai": "7.7.5",
"localforage": "^1.10.0",
"mustache": "^4.2.0",
"openai": "4.28.0",
"qrcode": "1.5.3",
"rambda": "^9.1.0",
"slugify": "^1.6.6",
"snakecase-keys": "^6.0.0",
"valibot": "0.29.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/mustache": "4.2.5",
"@types/node": "20.11.19",
"@types/qrcode": "1.5.5",
"builtin-modules": "3.3.0",
"esbuild": "0.20.1",
"husky": "9.0.11",
"lint-staged": "^15.2.2",
"obsidian": "1.4.11",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vitest": "1.3.1"
},
"lint-staged": {
"*.{js,ts,mjs,cjs}": [
"biome check && tsc"
]
}
"name": "obsidian-wordwise-plugin",
"version": "0.6.0",
"private": true,
"description": "Writing companion for AI content generation.",
"license": "MIT",
"author": "ckt1031",
"main": "main.js",
"scripts": {
"build": "bun esbuild.config.ts production",
"dev": "bun esbuild.config.ts",
"format": "biome format . --write",
"lint": "tsc --noEmit --skipLibCheck && biome check .",
"lint:fix": "tsc --noEmit --skipLibCheck && biome check --apply .",
"test": "vitest run",
"version": "bun version-bump.ts && biome format manifest.json versions.json --write && git add manifest.json versions.json",
"prepare": "husky || true",
"lint-staged": "lint-staged"
},
"dependencies": {
"@anthropic-ai/sdk": "0.14.0",
"@google/generative-ai": "0.2.1",
"cohere-ai": "7.7.5",
"localforage": "^1.10.0",
"mustache": "^4.2.0",
"openai": "4.28.0",
"qrcode": "1.5.3",
"rambda": "^9.1.0",
"slugify": "^1.6.6",
"snakecase-keys": "^6.0.0",
"valibot": "0.29.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/mustache": "4.2.5",
"@types/node": "20.11.19",
"@types/qrcode": "1.5.5",
"builtin-modules": "3.3.0",
"esbuild": "0.20.1",
"husky": "9.0.11",
"lint-staged": "^15.2.2",
"obsidian": "1.4.11",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vitest": "1.3.1"
},
"lint-staged": {
"*.{js,ts,mjs,cjs}": [
"biome check && tsc"
]
}
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"0.4.5": "1.0.0",
"0.5.0": "1.0.0",
"0.5.1": "1.0.0",
"0.5.2": "1.0.0"
"0.5.2": "1.0.0",
"0.6.0": "1.0.0"
}

0 comments on commit 70d71c2

Please sign in to comment.