diff --git a/.changeset/find-in-note.md b/.changeset/find-in-note.md deleted file mode 100644 index 42ce3e5..0000000 --- a/.changeset/find-in-note.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: minor ---- - -Add in-note search with highlighted matches, keyboard navigation, and support for Unicode text. diff --git a/.changeset/simpler-menu-and-updates.md b/.changeset/simpler-menu-and-updates.md deleted file mode 100644 index d6c2247..0000000 --- a/.changeset/simpler-menu-and-updates.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: patch ---- - -Simplify the menu bar menu and remove the ineffective automatic download setting. diff --git a/.changeset/smoother-settings-pages.md b/.changeset/smoother-settings-pages.md deleted file mode 100644 index 49a74db..0000000 --- a/.changeset/smoother-settings-pages.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: patch ---- - -Switching pages in the Settings window no longer stutters, most noticeably when moving to General. diff --git a/.changeset/vim-search.md b/.changeset/vim-search.md deleted file mode 100644 index d75a2c5..0000000 --- a/.changeset/vim-search.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: minor ---- - -Add Vim Normal-mode search with `/` to preview a query and `n` or `N` to jump between matches. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..132cc93 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +## 0.1.1 (2026-09-26) + +### Features + +- Add in-note search with highlighted matches, keyboard navigation, and support for Unicode text. +- Add Vim Normal-mode search with `/` to preview a query and `n` or `N` to jump between matches. + +### Fixes + +- Simplify the menu bar menu and remove the ineffective automatic download setting. +- Switching pages in the Settings window no longer stutters, most noticeably when moving to General. diff --git a/Cargo.lock b/Cargo.lock index b70480d..34dbc77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3927,7 +3927,7 @@ dependencies = [ [[package]] name = "markraft-app" -version = "0.1.0" +version = "0.1.1" dependencies = [ "futures-channel", "futures-util", @@ -3959,7 +3959,7 @@ dependencies = [ [[package]] name = "markraft-commonmark" -version = "0.1.0" +version = "0.1.1" dependencies = [ "comrak", "emojis", @@ -3973,7 +3973,7 @@ dependencies = [ [[package]] name = "markraft-core" -version = "0.1.0" +version = "0.1.1" dependencies = [ "serde", "serde_json", @@ -3983,7 +3983,7 @@ dependencies = [ [[package]] name = "markraft-gpui" -version = "0.1.0" +version = "0.1.1" dependencies = [ "emojis", "gpui-pre", @@ -4001,7 +4001,7 @@ dependencies = [ [[package]] name = "markraft-vim" -version = "0.1.0" +version = "0.1.1" dependencies = [ "gpui-pre", "markraft-commonmark", diff --git a/Cargo.toml b/Cargo.toml index 1d0aec4..7bfcc9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.1.0" +version = "0.1.1" edition = "2024" publish = false license = "MIT"