Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v2.3.3
## Fixes

- Update dependencies.

## Features
- New setting to pre-populate the description of a new trello card with the note it's being attached to. Thanks @ChrisChinchilla!

# v2.3.2

## Fixes
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-trello",
"name": "Trello",
"version": "2.3.2",
"version": "2.3.3",
"minAppVersion": "1.7.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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-trello",
"version": "2.3.2",
"version": "2.3.3",
"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",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const DEFAULT_SETTINGS: PluginSettings = {

export const DEFAULT_DATA: PluginData = {
settings: DEFAULT_SETTINGS,
version: '2.3.2',
version: '2.3.3',
firstRun: true,
connectedCards: {}
};
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
"2.1.1": "1.2.0",
"2.2.0": "1.2.0",
"2.3.1": "1.2.0",
"2.3.2": "1.7.2"
"2.3.2": "1.7.2",
"2.3.3": "1.7.2"
}
Loading