diff --git a/CHANGELOG.md b/CHANGELOG.md index 6111993..e56034b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [0.0.9](https://github.com/Mara-Li/obsidian-my-thesaurus/compare/0.0.8...0.0.9) (2025-02-24) +### Features + +* **settings:** add excludeTermKey setting to filter tags in frontmatter ([04d4010](https://github.com/Mara-Li/obsidian-my-thesaurus/commit/04d40100e56ca4c3eccb4b3153c2f48424b72cf0)) + ## [0.0.8](https://github.com/Mara-Li/obsidian-my-thesaurus/compare/0.0.7...0.0.8) (2025-02-21) ### Features diff --git a/manifest-beta.json b/manifest-beta.json index 387fe87..174aa92 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,7 +1,7 @@ { "id": "my-thesaurus", "name": "My Thesaurus", - "version": "0.0.8", + "version": "0.0.9", "minAppVersion": "1.5.12", "description": "Automagically adds tags based on a simple csv file or a Markdown table.", "author": "mara-li", diff --git a/manifest.json b/manifest.json index 387fe87..174aa92 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "my-thesaurus", "name": "My Thesaurus", - "version": "0.0.8", + "version": "0.0.9", "minAppVersion": "1.5.12", "description": "Automagically adds tags based on a simple csv file or a Markdown table.", "author": "mara-li", diff --git a/package.json b/package.json index b9d9201..340d6b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-thesaurus", - "version": "0.0.8", + "version": "0.0.9", "description": "Add automagically tags based on a thesaurus (CSV or markdown table).", "main": "main.js", "private": true, @@ -10,8 +10,8 @@ "dev:prod": "node esbuild.config.mjs --vault", "dev": "node esbuild.config.mjs", "export": "node esbuild.config.mjs --production --vault", - "bump": "dotenv -- node commit-and-tag-version.mjs", - "postbump": "dotenv -- if-env SKIP_POST_BUMP=true && echo skip bump || git push --follow-tags origin master", + "bump": "node commit-and-tag-version.mjs", + "postbump": "git push --follow-tags origin master", "predeploy": "bun run bump", "deploy": "pnpm run export", "lint": "pnpm biome format --write src/"