From 852a05cb34d68a99d841e69279f413e870db4170 Mon Sep 17 00:00:00 2001 From: Frederick Zhang Date: Sun, 10 Jul 2022 20:35:27 +1000 Subject: [PATCH] chore: Bump version to 0.2.0 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- extension/manifest.json | 2 +- extension/package.json | 2 +- 5 files changed, 32 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6154ffd..c288373 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ + +## v0.2.0 (2022-07-10) + + +#### Bug Fixes + +* **ext:** + * Template cleared after selecting Custom ([cd69617f](https://github.com/Frederick888/external-editor-revived/commit/cd69617f20ea8ce386c8da0cc7d521aff1d0bf7b)) + * Not concatenating chunked HTML body ([175bc5f9](https://github.com/Frederick888/external-editor-revived/commit/175bc5f9df168870fb944cfc91fc0815e066bd2c)) + * Editor command should use Homebrew path in macOS ([5f8e6ae8](https://github.com/Frederick888/external-editor-revived/commit/5f8e6ae828a1abebebcce9c04fa13d6d39be9371)) + +#### Features + +* Add help message headers ([2e1f9e15](https://github.com/Frederick888/external-editor-revived/commit/2e1f9e15af5ed06ee36ba4574803c2f15d36295d)) +* **ext:** + * Add Ctrl-E shortcut for compose action ([0569819e](https://github.com/Frederick888/external-editor-revived/commit/0569819eec18ab1ef8268168b37a6c99053a7824)) + * Use textarea for templates ([9d5b0b17](https://github.com/Frederick888/external-editor-revived/commit/9d5b0b1782259b9d3ece7e52a95798db9e17eafb)) + * Prompt to sync with upstream template ([86763e6d](https://github.com/Frederick888/external-editor-revived/commit/86763e6d5219df8833db93ff4d8b1f804bc80d02)) + * Kitty macos_quit_when_last_window_closed ([3d802fcc](https://github.com/Frederick888/external-editor-revived/commit/3d802fcc3c40dd3113ebb8492ca289daba5c5890)) +* **host:** + * Make header names case-insensitive ([e7dab336](https://github.com/Frederick888/external-editor-revived/commit/e7dab336b34d89bf29211ebd617aee909cc199cc)) + * Rename Send-On-Save to Send-On-Exit ([f22f00ad](https://github.com/Frederick888/external-editor-revived/commit/f22f00ad3e9acc35513d754938de5eb3395876d8)) + * Skip relatedMessageId if null ([b580bbaa](https://github.com/Frederick888/external-editor-revived/commit/b580bbaa9285ee20792025f203b884d7a2b26823)) + * Add -i, -l to macOS shell arguments ([7c119a09](https://github.com/Frederick888/external-editor-revived/commit/7c119a0938b78120ae6ca06cbec5431989289304)) + * Support -v/-h for version/help message ([f4bde758](https://github.com/Frederick888/external-editor-revived/commit/f4bde7582cabf5a5fb8378c06d7ed533ff642b13)) + + + ## v0.1.1 (2022-07-08) diff --git a/Cargo.lock b/Cargo.lock index 2e8c0fe..f2d2de8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "external-editor-revived" -version = "0.1.1" +version = "0.2.0" dependencies = [ "anyhow", "serde", diff --git a/Cargo.toml b/Cargo.toml index ea402d5..79a7522 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "external-editor-revived" description = "Edit emails in external editors such as Vim" -version = "0.1.1" +version = "0.2.0" edition = "2021" license = "GPL-3.0-or-later" diff --git a/extension/manifest.json b/extension/manifest.json index 515c543..d68230f 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -4,7 +4,7 @@ "short_name": "ExtEditorR", "description": "Edit emails in external editors such as Vim", "homepage_url": "https://github.com/Frederick888/external-editor-revived", - "version": "0.1.1", + "version": "0.2.0", "author": "Frederick Zhang", "applications": { "gecko": { diff --git a/extension/package.json b/extension/package.json index 4ef7fed..c4060b6 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1,6 +1,6 @@ { "name": "external-editor-revived", - "version": "0.1.1", + "version": "0.2.0", "description": "Edit emails in external editors such as Vim", "main": "background.js", "author": "Frederick Zhang",