From 31886ed136f332a1f516f5d60bb47d23b1dc80e0 Mon Sep 17 00:00:00 2001 From: guopenghui Date: Thu, 16 Jan 2025 17:07:45 +0800 Subject: [PATCH] update manifest and release --- manifest.json | 4 ++-- publish.mjs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index c367e3c..8f36f59 100644 --- a/manifest.json +++ b/manifest.json @@ -1,11 +1,11 @@ { "id": "obsidian-quiet-outline", "name": "Quiet Outline", - "version": "0.3.39", + "version": "0.3.40", "minAppVersion": "0.15.6", "description": "Make outline quiet and more powerful, including no-auto-expand, rendering heading as markdown, and search support.", "author": "the_tree", "authorUrl": "", "fundingUrl": "https://www.buymeacoffee.com/thtree", "isDesktopOnly": false -} +} \ No newline at end of file diff --git a/publish.mjs b/publish.mjs index 7725f3e..da0ff6e 100644 --- a/publish.mjs +++ b/publish.mjs @@ -12,7 +12,7 @@ if (manifest.version !== version) { manifest.version = version; fs.writeFileSync(path.join(root, "manifest.json"), JSON.stringify(manifest, null, 4)); // message must use " instead of ' on windows - child.execSync('git commit -am "update manifest"'); + child.execSync('git commit -am "update manifest and release"'); } child.execSync("git push");