chore: bumping version to 0.14.0

This commit is contained in:
Kacper Kula 2025-01-10 11:21:19 +00:00
parent 470fcb42fc
commit dd3230090b
4 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,6 @@
# 0.14.0
Added support for inline code blocks. Create a codeblock (backtick `) and use prefix S> to indicate it's SQLSeal query.
# 0.13.0
Huge upgrade to the code codebase. SQLSeal should be now much faster and more reliable thanks to the following:
- Rewritten how files are synched - now each CSV file creates AT MOST one table in the database (synchronisations are being reused accross files)

View file

@ -1,7 +1,7 @@
{
"id": "sqlseal",
"name": "SQLSeal",
"version": "0.13.0",
"version": "0.14.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.13.0",
"version": "0.14.0",
"description": "A plugin for Obsidian that allows you to run SQL queries on your notes.",
"main": "main.js",
"scripts": {

View file

@ -19,5 +19,6 @@
"0.12.2": "0.15.0",
"0.12.3": "0.15.0",
"0.12.4": "0.15.0",
"0.13.0": "0.15.0"
"0.13.0": "0.15.0",
"0.14.0": "0.15.0"
}