Skip to content

Commit 0313328

Browse files
Merge pull request #207 from rustwasm/0.4.1
v0.4.1
2 parents 21c94b0 + b046dd6 commit 0313328

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,60 @@
11
# Changelog
22

3+
## ⭐ 0.4.1
4+
5+
- #### 🤕 Fixes
6+
7+
- **fix `files` key value for projects build for `nodejs` target - [ashleygwilliams], [issue/199] [pull/205]**
8+
9+
We became aware that the `files` key in `package.json` did not include the additional `_bg.js` file that
10+
`wasm-bindgen` generates for projects being built for the `nodejs` target. This resulted in the file not
11+
being included in the published package and resulted in a `Module Not Found` error for folks.
12+
13+
This was a group effort from [mciantyre] with [pull/200] and [Brooooooklyn] with [pull/197]. Thank you so
14+
much for your diligence and patience while we sorted through it.
15+
16+
[mciantyre]: https://github.com/mciantyre
17+
[Brooooooklyn]: https://github.com/Brooooooklyn
18+
[issue/199]: https://github.com/rustwasm/wasm-pack/issues/199
19+
[pull/205]: https://github.com/rustwasm/wasm-pack/pull/205
20+
[pull/197]: https://github.com/rustwasm/wasm-pack/pull/197
21+
[pull/200]: https://github.com/rustwasm/wasm-pack/pull/200
22+
23+
- #### 🛠️ Maintenance
24+
25+
- **clean up `quicli` remnants - [SoryRawyer], [pull/193]**
26+
27+
In [v0.3.0] we removed the `quicli` dependency, however there were a few remnants
28+
left behind. They are now removed!
29+
30+
[SoryRawyer]: https://github.com/SoryRawyer
31+
[pull/193]: https://github.com/rustwasm/wasm-pack/pull/193
32+
[v0.3.0]: https://github.com/rustwasm/wasm-pack/blob/master/CHANGELOG.md#-030
33+
34+
- #### 📖 Documentation
35+
36+
- **DOCUMENT EVERYTHING!! and deny missing docs for all future development - [fitzgen], [pull/208]**
37+
38+
The `wasm-pack` team has worked hard on tutorial documentation and keeping the codebase as self-explanatory
39+
as possible, but we have been slowly accruing a documentation debt. This amazing PR, landed just moments
40+
before this point release and was just too good not to include. Thank you so much, [fitzgen]!
41+
42+
[fitzgen]: https://github.com/fitzgen
43+
[pull/208]: https://github.com/rustwasm/wasm-pack/pull/208
44+
45+
- **fix README code example - [steveklabnik], [pull/195]**
46+
47+
The code example in our `README.md` was missing a critical `pub`. It's there now!
48+
49+
[pull/195]: https://github.com/rustwasm/wasm-pack/pull/195/files
50+
51+
- **fix README markup - [Hywan], [pull/202]**
52+
53+
There was an errant `` ` `` - it's gone now!
54+
55+
[Hywan]: https://github.com/Hywan
56+
[pull/202]: https://github.com/rustwasm/wasm-pack/pull/202
57+
358
## 🌟 0.4.0
459

560
This release has a ton of awesome things in it, but the best thing is that

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wasm-pack"
33
description = "pack up the wasm and publish it to npm!"
4-
version = "0.4.0"
4+
version = "0.4.1"
55
authors = ["Ashley Williams <[email protected]>"]
66
repository = "https://github.com/ashleygwilliams/wasm-pack.git"
77
license = "MIT/Apache-2.0"

0 commit comments

Comments
 (0)