diff --git a/CHANGELOG.md b/CHANGELOG.md index 06251ce..f7bcc2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ -# Unreleased +# 0.26.0 (2025-02-16) +- Better language parser! Reworked from the ground up, now SQLSeal uses Ohm.js parser which works much better and opens much more possibilities (like syntax highlighting also introduced in this version). - Syntax highlighting! Your SQLSeal text is now being highlighted helping you spot potential syntax issues quickly. The highlighting will be iterated on so please join discussion on our Discord! - fix: database did not load properly when vault name consisted spaces or was in the subfolder (mostly causing issue on mobile) diff --git a/manifest.json b/manifest.json index 1860e6e..0a34047 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "sqlseal", "name": "SQLSeal", - "version": "0.25.0", + "version": "0.26.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 8aabaa2..0aac2b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqlseal", - "version": "0.25.0", + "version": "0.26.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 4879db2..5e1ad76 100644 --- a/versions.json +++ b/versions.json @@ -46,5 +46,6 @@ "0.24.0": "0.15.0", "0.24.1": "0.15.0", "0.24.2": "0.15.0", - "0.25.0": "0.15.0" + "0.25.0": "0.15.0", + "0.26.0": "0.15.0" } \ No newline at end of file