Skip to content

Commit 7f2aead

Browse files
release: 4.11.6
Commit wasm/pkg/ so community build checker can run bun run build without Rust/wasm-pack. wasm-pack auto-generates pkg/.gitignore with "*"; override it so JS bindings and type declarations are tracked.
1 parent 4c252b0 commit 7f2aead

11 files changed

Lines changed: 4332 additions & 3 deletions

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. See [standa
44

55
## 4.X
66

7+
### [4.11.6](https://github.com/SkepticMystic/breadcrumbs/compare/4.11.5...4.11.6) (2026-05-22)
8+
9+
### Bug Fixes
10+
11+
* **Community build verification** — commit `wasm/pkg/` (generated WASM bindings) so the Obsidian community plugin build checker can run `bun run build` without a Rust/wasm-pack toolchain. `wasm-pack` auto-generates a `pkg/.gitignore` with `*` that previously excluded the entire directory; that file is now overridden so the JS bindings and type declarations are tracked in git.
12+
713
### [4.11.5](https://github.com/SkepticMystic/breadcrumbs/compare/4.11.4...4.11.5) (2026-05-22)
814

915
### Bug Fixes

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"fundingUrl": "https://github.com/SkepticMystic/breadcrumbs#donations",
99
"helpUrl": "https://breadcrumbs-docs.michaelpporter.com",
1010
"isDesktopOnly": false,
11-
"version": "4.11.5"
11+
"version": "4.11.6"
1212
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "breadcrumbs",
3-
"version": "4.11.5",
3+
"version": "4.11.6",
44
"description": "Add typed-links to your Obsidian notes",
55
"main": "main.js",
66
"scripts": {

wasm/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/target
22
**/*.rs.bk
33
bin/
4-
pkg/
54
wasm-pack.log

wasm/pkg/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# wasm-pack generates this file with "*" — overridden so pkg/ can be committed

wasm/pkg/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## Build
2+
3+
Packages will be downloaded on the first build.
4+
5+
```bash
6+
wasm-pack build --target web
7+
```
8+
9+
## Format
10+
11+
```bash
12+
cargo fmt
13+
```
14+
15+
## Test
16+
17+
```bash
18+
wasm-pack test --node --features test
19+
```

0 commit comments

Comments
 (0)