From 0e48e5c3a2687c072163f7bc031d27aea97f2709 Mon Sep 17 00:00:00 2001 From: Nathan Smith Date: Thu, 29 Feb 2024 17:19:44 -0500 Subject: [PATCH] build: release v2.2.0 --- CHANGELOG.md | 6 ++++++ manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/constants.ts | 2 +- versions.json | 3 ++- 6 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13d7300..13e3111 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v2.2.0 + +## Features + +- New option to open trello links in the trello desktop apps. Thanks @ChrisChinchilla! + # v2.1.0 ## Features diff --git a/manifest.json b/manifest.json index df153f9..56b6f30 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-trello", "name": "Trello", - "version": "2.1.1", + "version": "2.2.0", "minAppVersion": "1.2.0", "description": "Connect an existing or new Trello card to an Obsidian note. Once connected, see basic info, add and view comments, and check off checklist items.", "author": "Nathonius", diff --git a/package-lock.json b/package-lock.json index 3dc4884..707972f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-trello", - "version": "2.1.1", + "version": "2.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "obsidian-trello", - "version": "2.1.1", + "version": "2.2.0", "license": "MIT", "dependencies": { "nanoid": "^3.1.25", diff --git a/package.json b/package.json index 086580c..9a2c985 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-trello", - "version": "2.1.1", + "version": "2.2.0", "description": "Connect an existing or new Trello card to an Obsidian note. Once connected, see basic info, add and view comments, and check off checklist items.", "repository": { "type": "git", diff --git a/src/constants.ts b/src/constants.ts index d51240c..8125f9d 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -50,7 +50,7 @@ export const DEFAULT_SETTINGS: PluginSettings = { export const DEFAULT_DATA: PluginData = { settings: DEFAULT_SETTINGS, - version: '2.1.1', + version: '2.2.0', firstRun: true, connectedCards: {} }; diff --git a/versions.json b/versions.json index 26436af..e68b612 100644 --- a/versions.json +++ b/versions.json @@ -12,5 +12,6 @@ "1.6.1": "0.15.5", "2.0.0": "1.2.0", "2.1.0": "1.2.0", - "2.1.1": "1.2.0" + "2.1.1": "1.2.0", + "2.2.0": "1.2.0" }