release: 0.30.0

This commit is contained in:
Kacper Kula 2025-03-26 13:29:01 +00:00
parent cde5a4df65
commit 183ef9e597
5 changed files with 9 additions and 6 deletions

View file

@ -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)

View file

@ -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.

View file

@ -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",

View file

@ -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": {

View file

@ -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"
}