diff --git a/CHANGELOG.md b/CHANGELOG.md index caea752..cd94b5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ -# Unreleased +# 0.30.0 (2025-03-26) - feat: added ability to reference tables from the other files in `table()` functions +- feat: added ability to reference tables by their header name +- feat: new heading and heading_level columns in tasks table (by @kDCYorke) # 0.29.0 (2025-03-19) - feat: LIST views with single column are rendered as a regular list (rather than nested one) (by @kDCYorke) diff --git a/docs/data-sources/vault-data.md b/docs/data-sources/vault-data.md index 309a207..011fd42 100644 --- a/docs/data-sources/vault-data.md +++ b/docs/data-sources/vault-data.md @@ -48,8 +48,8 @@ Tasks table consists of the following columns: | `filePath` | (deprecated) same like `path`. Name changed for compatibility with other tables. Will get removed in the future versions | | | `checkbox` | Interactive checkbox for the task that can be clicked to toggle completion state | 0.29.0 | | `position` | Line number where the task appears in the original file | 0.29.0 | -| `heading` | The name of the heading this task appears under (if any) | | -| `heading_level` | The level of the heading this task appears under (if any), i.e., the number of # in the heading declaration | | +| `heading` | The name of the heading this task appears under (if any) | 0.30.0 | +| `heading_level` | The level of the heading this task appears under (if any), i.e., the number of # in the heading declaration | 0.30.0 | ### `links` table Table containing all the links between files. diff --git a/manifest.json b/manifest.json index 811f33d..24a3014 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "sqlseal", "name": "SQLSeal", - "version": "0.29.0", + "version": "0.30.0", "minAppVersion": "0.15.0", "description": "Use SQL in your notes to query your vault files and CSV content.", "author": "hypersphere", diff --git a/package.json b/package.json index 23761cc..7e13fd9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqlseal", - "version": "0.29.0", + "version": "0.30.0", "description": "A plugin for Obsidian that allows you to run SQL queries on your notes.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 472f615..f981b8d 100644 --- a/versions.json +++ b/versions.json @@ -54,5 +54,6 @@ "0.28.2": "0.15.0", "0.28.3": "0.15.0", "0.28.4": "0.15.0", - "0.29.0": "0.15.0" + "0.29.0": "0.15.0", + "0.30.0": "0.15.0" } \ No newline at end of file