Skip to content

Commit c8d7d2a

Browse files
pi-nathannathonius
authored andcommitted
build: release v2.1.0
1 parent 8fb2c68 commit c8d7d2a

6 files changed

+12
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v2.1.0
2+
3+
## Features
4+
5+
- New setting to pre-populate the title of a new trello card with the note it's being attached to. Thanks @ChrisChinchilla!
6+
17
# v2.0.0
28

39
## BREAKING CHANGES

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-trello",
33
"name": "Obsidian Trello",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"minAppVersion": "1.2.0",
66
"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.",
77
"author": "OfficerHalf",

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-trello",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"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.",
55
"repository": {
66
"type": "git",

src/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const DEFAULT_SETTINGS: PluginSettings = {
4949

5050
export const DEFAULT_DATA: PluginData = {
5151
settings: DEFAULT_SETTINGS,
52-
version: '2.0.0',
52+
version: '2.1.0',
5353
firstRun: true,
5454
connectedCards: {}
5555
};

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"1.5.1": "0.12.12",
1111
"1.6.0": "0.12.12",
1212
"1.6.1": "0.15.5",
13-
"2.0.0": "1.2.0"
13+
"2.0.0": "1.2.0",
14+
"2.1.0": "1.2.0"
1415
}

0 commit comments

Comments
 (0)