diff --git a/CHANGELOG.md b/CHANGELOG.md index 0da46be..444d55c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ + +## v0.6.0 (2023-02-10) + + +#### Features + +* Run a messaging host health check upon start ([4d5545a6](https://github.com/Frederick888/external-editor-revived/commit/4d5545a6237991b6f17b391dfb3c23f4ea57afc2)) +* **ext:** Show a wiki banner in options if unhealthy ([1419957c](https://github.com/Frederick888/external-editor-revived/commit/1419957cc447363ba5a0111f75565044675e11d4)) + + + ## v0.5.0 (2023-01-26) diff --git a/Cargo.lock b/Cargo.lock index 9dbebf0..2efb63b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -61,7 +61,7 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "external-editor-revived" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index 11fa3e1..5406178 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, Neovim, Emacs, etc." -version = "0.5.0" +version = "0.6.0" edition = "2021" license = "GPL-3.0-or-later" diff --git a/extension/manifest.json b/extension/manifest.json index 34e82be..c43b725 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, Neovim, Emacs, etc.", "homepage_url": "https://github.com/Frederick888/external-editor-revived", - "version": "0.5.0", + "version": "0.6.0", "author": "Frederick Zhang", "applications": { "gecko": { diff --git a/extension/package.json b/extension/package.json index 4f8929d..779344c 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1,6 +1,6 @@ { "name": "external-editor-revived", - "version": "0.5.0", + "version": "0.6.0", "description": "Edit emails in external editors such as Vim, Neovim, Emacs, etc.", "main": "background.js", "author": "Frederick Zhang",