Skip to content

Commit

Permalink
chore: release v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenlx committed Sep 1, 2021
1 parent 903b0cd commit 2a0ab5f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions 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)


Expand Down
2 changes: 1 addition & 1 deletion mnaddon.json
Expand Up @@ -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": ""
}
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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 = `<!--MN^${version}-->\n`;
export const PREFIX_REGEX = /^<!--MN\^([\d.]+)-->\n/;
Expand Down

0 comments on commit 2a0ab5f

Please sign in to comment.