diff --git a/CHANGELOG.md b/CHANGELOG.md index e9b6858..bb8008e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# 0.9.1 +Turning off verbose mode # 0.9.0 We now use proper grid library to render data. This allow for many great features like pagination, sorting and more visally pleasing UI out of the box. Reworked internal communication to use Signals. diff --git a/main.ts b/main.ts index 81f5c42..c90c069 100644 --- a/main.ts +++ b/main.ts @@ -12,7 +12,7 @@ export default class SqlSealPlugin extends Plugin { async onload() { await this.loadSettings(); - const sqlSeal = new SqlSeal(this.app, true) // FIXME: set verbose based on the env. + const sqlSeal = new SqlSeal(this.app, false) // FIXME: set verbose based on the env. this.registerMarkdownCodeBlockProcessor("sqlseal", sqlSeal.getHandler()) this.sqlSeal = sqlSeal // start syncing when files are loaded diff --git a/manifest.json b/manifest.json index d036a08..96eec84 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "sqlseal", "name": "SQLSeal", - "version": "0.9.0", + "version": "0.9.1", "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 91a1d67..7c298db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqlseal", - "version": "0.9.0", + "version": "0.9.1", "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 605e894..1bdf860 100644 --- a/versions.json +++ b/versions.json @@ -8,5 +8,6 @@ "0.6.0": "0.15.0", "0.7.0": "0.15.0", "0.8.0": "0.15.0", - "0.9.0": "0.15.0" + "0.9.0": "0.15.0", + "0.9.1": "0.15.0" } \ No newline at end of file