diff --git a/CHANGELOG.md b/CHANGELOG.md index 13e3111..6051ba7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v2.3.0 + +## Features + +- New option to see and add card due dates. Thanks @ChrisChinchilla! + # v2.2.0 ## Features diff --git a/manifest.json b/manifest.json index 56b6f30..2a75c02 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-trello", "name": "Trello", - "version": "2.2.0", + "version": "2.3.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.json b/package.json index 9a2c985..0ed885d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-trello", - "version": "2.2.0", + "version": "2.3.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 ab5c2a5..fd11c33 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -51,7 +51,7 @@ export const DEFAULT_SETTINGS: PluginSettings = { export const DEFAULT_DATA: PluginData = { settings: DEFAULT_SETTINGS, - version: '2.2.0', + version: '2.3.0', firstRun: true, connectedCards: {} }; diff --git a/versions.json b/versions.json index e68b612..ee75dc8 100644 --- a/versions.json +++ b/versions.json @@ -13,5 +13,6 @@ "2.0.0": "1.2.0", "2.1.0": "1.2.0", "2.1.1": "1.2.0", - "2.2.0": "1.2.0" + "2.2.0": "1.2.0", + "2.3.0": "1.2.0" }