chore(release): bump version to 0.2.0
CI / cargo fmt --check (push) Successful in 48s
CI / cargo clippy (push) Successful in 1m0s
CI / cargo test (push) Successful in 1m28s
Release / build aarch64-unknown-linux-musl (push) Successful in 1m33s
Release / build x86_64-unknown-linux-gnu (push) Successful in 1m0s
Release / build aarch64-unknown-linux-gnu (push) Successful in 1m2s
Release / build x86_64-unknown-linux-musl (push) Successful in 1m1s
Release / gitea release (push) Successful in 26s
CI / editor keymaps (push) Successful in 1m45s

Minor feature release over v0.1.0 (124 commits). Highlights:
- Drop-in upstream g:vimwiki_list / g:vimwiki_* config (Vim) + global
  per-wiki defaults shorthand (both clients)
- Programmatic coc.nvim registration (no hand-written coc-settings.json)
- :NuwikiTOC / GenerateLinks / GenerateTagLinks insert at the cursor line;
  scoped :NuwikiGenerateLinks <path> wired up
- HTML export: heading id anchors, div.toc wrapper, section numbering;
  toc_header/level honoured in single-wiki config
- The full P3 config/command/mapping parity batch + R1–R18 review fixes

Bumps the workspace version, the inter-crate path-dep requirements, and
g:nuwiki_version.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-05 01:29:29 +00:00
parent daee0f1902
commit 34a0607e7a
5 changed files with 7 additions and 7 deletions
Generated
+3 -3
View File
@@ -376,11 +376,11 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
[[package]] [[package]]
name = "nuwiki-core" name = "nuwiki-core"
version = "0.1.0" version = "0.2.0"
[[package]] [[package]]
name = "nuwiki-ls" name = "nuwiki-ls"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"nuwiki-lsp", "nuwiki-lsp",
"tokio", "tokio",
@@ -388,7 +388,7 @@ dependencies = [
[[package]] [[package]]
name = "nuwiki-lsp" name = "nuwiki-lsp"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"dashmap 6.1.0", "dashmap 6.1.0",
+1 -1
View File
@@ -7,7 +7,7 @@ members = [
] ]
[workspace.package] [workspace.package]
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
rust-version = "1.83" rust-version = "1.83"
authors = ["Gabriel Fróes Franco <gffranco@gmail.com>"] authors = ["Gabriel Fróes Franco <gffranco@gmail.com>"]
+1 -1
View File
@@ -17,5 +17,5 @@ name = "nuwiki-ls"
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]
nuwiki-lsp = { path = "../nuwiki-lsp", version = "0.1.0" } nuwiki-lsp = { path = "../nuwiki-lsp", version = "0.2.0" }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std"] } tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std"] }
+1 -1
View File
@@ -13,7 +13,7 @@ homepage.workspace = true
workspace = true workspace = true
[dependencies] [dependencies]
nuwiki-core = { path = "../nuwiki-core", version = "0.1.0" } nuwiki-core = { path = "../nuwiki-core", version = "0.2.0" }
tower-lsp = "0.20" tower-lsp = "0.20"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std", "sync", "fs"] } tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std", "sync", "fs"] }
dashmap = "6" dashmap = "6"
+1 -1
View File
@@ -15,7 +15,7 @@ let g:loaded_nuwiki = 1
" Plugin version, surfaced by :VimwikiShowVersion / :NuwikiShowVersion. " Plugin version, surfaced by :VimwikiShowVersion / :NuwikiShowVersion.
" Set before the Neovim early-return below so both clients see the global. " Set before the Neovim early-return below so both clients see the global.
if !exists('g:nuwiki_version') if !exists('g:nuwiki_version')
let g:nuwiki_version = '0.1.0' let g:nuwiki_version = '0.2.0'
endif endif
" Resolve the plugin root NOW, while this script is being sourced and " Resolve the plugin root NOW, while this script is being sourced and