diff --git a/CHANGELOG.md b/CHANGELOG.md index 16a3973..bcf3109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [0.0.3](https://github.com/Mara-Li/obsidian-my-thesaurus/compare/0.0.2...0.0.3) (2025-02-08) +### Features + +* allow markdown table ([c253daf](https://github.com/Mara-Li/obsidian-my-thesaurus/commit/c253dafb0e525eff4e1a5627baae010c37f7c67d)) + ## [0.0.2](https://github.com/Mara-Li/obsidian-my-thesaurus/compare/0.0.1...0.0.2) (2025-02-08) ## 0.0.1 (2025-02-08) diff --git a/manifest-beta.json b/manifest-beta.json index 6e1a5a8..5ddc525 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,7 +1,7 @@ { "id": "my-thesaurus", "name": "My Thesaurus", - "version": "0.0.2", + "version": "0.0.3", "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 6e1a5a8..5ddc525 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "my-thesaurus", "name": "My Thesaurus", - "version": "0.0.2", + "version": "0.0.3", "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 b021b13..b9adfa4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-thesaurus", - "version": "0.0.2", + "version": "0.0.3", "description": "Add automagically tags based on a thesaurus (CSV or markdown table).", "main": "main.js", "private": true, @@ -40,5 +40,8 @@ "dotenv-cli": "^8.0.0", "uniformize": "^2.2.0" }, - "trustedDependencies": ["@biomejs/biome", "esbuild"] + "trustedDependencies": [ + "@biomejs/biome", + "esbuild" + ] }