Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Commit

Permalink
chore: release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenlx committed Oct 20, 2021
1 parent 2842bdf commit 9f86f7c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [0.7.0](https://github.com/aidenlx/marginnote-companion/compare/0.6.4...0.7.0) (2021-10-20)


### Features

* **insert:** add support for paste-to-insert on mobile ([2842bdf](https://github.com/aidenlx/marginnote-companion/commit/2842bdf8bbeb9dab3c44bf90710ce01e5387750a))
* update paste hanlder to support cm6 ([87d06aa](https://github.com/aidenlx/marginnote-companion/commit/87d06aaa75707835aba389cd76884999784aaf82))

## [0.6.4](https://github.com/aidenlx/marginnote-companion/compare/0.6.3...0.6.4) (2021-10-13)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Go to [MarginNote Companion wiki](https://github.com/aidenlx/marginnote-companio

## Compatibility 兼容性

The required API feature is only available for Obsidian v0.12.5+.
The required API feature is only available for Obsidian v0.12.17+.

所需的 API 功能需要 Obsidian v0.12.5+.

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": "marginnote-companion",
"name": "MarginNote Companion",
"version": "0.6.4",
"version": "0.7.0",
"minAppVersion": "0.12.17",
"description": "An Obsidian plugin to bridge MarginNote 3 and Obsidian",
"author": "AidenLx",
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": "marginnote-companion",
"version": "0.6.4",
"version": "0.7.0",
"description": "",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/misc.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { unescape } from "html-escaper";

export const OBBRIDGE_MIN_VERSION = "3.0.2".replace(/\.\d+$/, ".x");
export const OBBRIDGE_MIN_VERSION = "3.0.4".replace(/\.\d+$/, ".x");
export const trimEmpty = (str: string) => str.replace(/^\s+|\s+$/g, "");
export const ChsRegex = /[\u4e00-\u9fa5]/g;

Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"0.6.1": "0.12.5",
"0.6.2": "0.12.5",
"0.6.3": "0.12.5",
"0.6.4": "0.12.5"
"0.6.4": "0.12.5",
"0.7.0": "0.12.17"
}

0 comments on commit 9f86f7c

Please sign in to comment.