From 0db9207081c2757b3712f61d846ba7b3c281a59c Mon Sep 17 00:00:00 2001 From: farling42 Date: Sun, 31 Mar 2024 21:10:18 +0100 Subject: [PATCH] Make version 0.36.1 visible to obsidian users --- CHANGELOG.md | 4 ++++ manifest.json | 2 +- package.json | 2 +- versions.json | 1 + 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbb84ca..eea60f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # ChangeLog +## 0.36.1 + +- Update all the Obsidian-specific version files so that users know that the improvements added in 0.36.0 are actually present in their Vault. + ## 0.36.0 - Provide an alternative method for creating the note name for each note. The "Field to use as note name" can contain some javascript which should perform a "return" in order to provide the required value. The syntax is `@{...some javascript...}` The JS can reference either `this.field` to reference items within the current record being processed, or `dataRoot.field` to access any data in the entire JSON record. A typical example would be: diff --git a/manifest.json b/manifest.json index a2f705f..60a02a0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-import-json", "name": "JSON/CSV Importer", - "version": "0.35.0", + "version": "0.36.1", "minAppVersion": "1.1.15", "description": "This plugin imports a JSON/CSV file (or text block) and creates notes from a Handlebars template file", "author": "farling42", diff --git a/package.json b/package.json index 5e91511..618fb02 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-import-json", - "version": "0.35.0", + "version": "0.36.1", "description": "This plugin imports a JSON/CSV file (or text block) and creates notes from a Handlebars template file", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index ee61791..11a2fd2 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { + "0.36.1": "1.1.15", "0.35.0": "1.1.15", "0.34.0": "1.1.15", "0.33.0": "1.1.15",