From 2a0ab5fbd0cfae0ebf18cb31ebc015422ca50425 Mon Sep 17 00:00:00 2001 From: AidenLx Date: Wed, 1 Sep 2021 17:14:37 +0800 Subject: [PATCH] chore: release v3.0.0 --- CHANGELOG.md | 18 ++++++++++++++++++ mnaddon.json | 2 +- package.json | 2 +- src/const.ts | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81ab45d..1549da5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# [3.0.0](https://github.com/alx-plugins/obsidian-bridge/compare/2.4.1...3.0.0) (2021-09-01) + + +### Bug Fixes + +* **scan:** update error prompt ([33e8312](https://github.com/alx-plugins/obsidian-bridge/commit/33e83128f26c7d3855574680862d81d0ef1d4f2f)) +* **sender:** fix toc data not being sent ([69cd000](https://github.com/alx-plugins/obsidian-bridge/commit/69cd000075d9a44c1d5e8a0e916d8b17373d82e5)) + + +### Features + +* **scan:** toc now expose more params ([903b0cd](https://github.com/alx-plugins/obsidian-bridge/commit/903b0cd065ec52905e8e22052bc6b678a0455b35)) + + +### BREAKING CHANGES + +* **scan:** toc.noteTitle is now optional + ## [2.4.1](https://github.com/alx-plugins/obsidian-bridge/compare/2.4.0...2.4.1) (2021-08-28) diff --git a/mnaddon.json b/mnaddon.json index ed33d18..86abfa5 100644 --- a/mnaddon.json +++ b/mnaddon.json @@ -2,7 +2,7 @@ "addonid": "marginnote.extension.obsidian-bridge", "author": "AidenLx", "title": "Obsidian Bridge", - "version": "2.4.1", + "version": "3.0.0", "marginnote_version_min": "3.7.12", "cert_key": "" } diff --git a/package.json b/package.json index 86df634..8a4f420 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aidenlx/obsidian-bridge", - "version": "2.4.1", + "version": "3.0.0", "description": "MarginNote 3 --> Obsidian", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/src/const.ts b/src/const.ts index 684f4f7..dc639df 100644 --- a/src/const.ts +++ b/src/const.ts @@ -1,6 +1,6 @@ import compareVersions from "compare-versions"; -const version = "2.4.1"; +const version = "3.0.0"; export const VERSION: string = version; export const PREFIX = `\n`; export const PREFIX_REGEX = /^\n/;