From 6062a4434877eb001e3dc7d1c8bfc8ef3378fba2 Mon Sep 17 00:00:00 2001 From: Carlo Zottmann Date: Tue, 25 Jul 2023 19:11:56 +0200 Subject: [PATCH] [REL] Release 1.2.3 --- CHANGELOG.md | 7 +++++++ manifest.json | 2 +- package.json | 2 +- src/plugin-info.json | 4 ++-- src/plugin-info.ts | 4 ++-- versions.json | 3 ++- 6 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecc8233..a106357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Release history +## 1.2.3, 2023-07-25 + +### Fixes + +- Attempting to use the Templates core plugin on iOS would result in an error. This is now fixed. + + ## 1.2.2, 2023-07-13 ### Fixes diff --git a/manifest.json b/manifest.json index ad40191..4ab3455 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "actions-uri", "name": "Actions URI", - "version": "1.2.2", + "version": "1.2.3", "minAppVersion": "1.2.0", "description": "Adds additional `x-callback-url` endpoints to the app for common actions — it's a clean, super-charged addition to Obsidian URI.", "author": "Carlo Zottmann", diff --git a/package.json b/package.json index f643744..6fba719 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-actions-uri", - "version": "1.2.2", + "version": "1.2.3", "description": "This plugin for Obsidian (https://obsidian.md) adds additional `x-callback-url` endpoints to the app for common actions — it's a clean, super-charged addition to Obsidian URI.", "main": "main.js", "scripts": { diff --git a/src/plugin-info.json b/src/plugin-info.json index 89da066..782afa8 100644 --- a/src/plugin-info.json +++ b/src/plugin-info.json @@ -1,4 +1,4 @@ { - "pluginVersion": "1.2.2", - "pluginReleasedAt": "2023-07-13T16:07:36+0200" + "pluginVersion": "1.2.3", + "pluginReleasedAt": "2023-07-25T19:11:52+0200" } diff --git a/src/plugin-info.ts b/src/plugin-info.ts index dc5a0f1..5dc47cd 100644 --- a/src/plugin-info.ts +++ b/src/plugin-info.ts @@ -1,5 +1,5 @@ /* File will be overwritten by bin/release.sh! */ export const PLUGIN_INFO = { - "pluginVersion": "1.2.2", - "pluginReleasedAt": "2023-07-13T16:07:36+0200" + "pluginVersion": "1.2.3", + "pluginReleasedAt": "2023-07-25T19:11:52+0200" } diff --git a/versions.json b/versions.json index fef4cae..c076804 100644 --- a/versions.json +++ b/versions.json @@ -27,5 +27,6 @@ "1.1.2": "1.2.0", "1.2.0": "1.2.0", "1.2.1": "1.2.0", - "1.2.2": "1.2.0" + "1.2.2": "1.2.0", + "1.2.3": "1.2.0" }