Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: release v2.1.0 #54

Merged
merged 1 commit into from
Nov 11, 2023
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v2.1.0

## Features

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

# v2.0.0

## BREAKING CHANGES
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": "Obsidian Trello",
"version": "2.0.0",
"version": "2.1.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": "OfficerHalf",
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.0.0",
"version": "2.1.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",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const DEFAULT_SETTINGS: PluginSettings = {

export const DEFAULT_DATA: PluginData = {
settings: DEFAULT_SETTINGS,
version: '2.0.0',
version: '2.1.0',
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 @@ -10,5 +10,6 @@
"1.5.1": "0.12.12",
"1.6.0": "0.12.12",
"1.6.1": "0.15.5",
"2.0.0": "1.2.0"
"2.0.0": "1.2.0",
"2.1.0": "1.2.0"
}