Skip to content

Commit 26c8b8d

Browse files
v0.2.0
1 parent 7da29b2 commit 26c8b8d

File tree

3 files changed

+69
-2
lines changed

3 files changed

+69
-2
lines changed

CHANGELOG.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Changelog
2+
3+
## 🌌 0.2.0
4+
5+
This release focuses on filling out all commands and improving stderr/out
6+
handling for improved user experience!
7+
8+
### ✨ Features
9+
10+
- **`pack` and `publish` - [jamiebuilds], [pull/67]**
11+
You can now run `wasm-pack pack` to generate a tarball of your generated package,
12+
as well as run `wasm-pack publish` to publish your package to the npm registry.
13+
Both commands require that you have npm installed, and the `publish` command requires
14+
that you be logged in to the npm client. We're working on wrapping the `npm login`
15+
command so that you can also login directly from `wasm-pack`, see [pull/100] for more
16+
details.
17+
18+
[jamiebuilds]: https://github.com/jamiebuilds
19+
[pull/67]: https://github.com/ashleygwilliams/wasm-pack/pull/67
20+
[pull/100]: https://github.com/ashleygwilliams/wasm-pack/pull/100
21+
22+
- **`package.json` is pretty printed now - [yoshuawuyts], [pull/70]**
23+
24+
Previously, `package.json` was not very human readable. Now it is pretty printed!
25+
26+
- **`collaborators` - [yoshuawuyts], [pull/70]**
27+
28+
`wasm-pack` now will fill out the `collaborators` field in your `package.json` for
29+
you based on your `Cargo.toml` `authors` data. For more discussion on how we decided
30+
on this v.s. other types of `author` fields in `package.json`, see [issues/2].
31+
32+
[yoshuawuyts]: https://github.com/yoshuawuyts
33+
[pull/70]: https://github.com/ashleygwilliams/wasm-pack/pull/70
34+
[issues/2]: https://github.com/ashleygwilliams/wasm-pack/issues/2
35+
36+
- **Release binaries built with CI - [ashleygwilliams], [pull/103]**
37+
38+
[ashleygwilliams]: https://github.com/ashleygwilliams
39+
[pull/103]: https://github.com/ashleygwilliams/wasm-pack/pull/103
40+
41+
### 🤕 Fixes
42+
43+
- **Optional `package.json` fields warn instead of failing - [mgattozzi], [pull/65]**
44+
45+
[pull/65]: https://github.com/ashleygwilliams/wasm-pack/pull/65
46+
47+
- **Program doesn't swallow stout and sterr - [mgattozzi], [pull/90]**
48+
49+
[mgattozzi]: https://github.com/mgattozzi
50+
[pull/90]: https://github.com/ashleygwilliams/wasm-pack/pull/90
51+
52+
### 🛠️ Maintenance and 📖 Documentation
53+
54+
Thanks so much to [mgattozzi], [data-pup], [sendilkumarn], [Andy-Bell],
55+
[steveklabnik], [jasondavies], and [edsrzf] for all the awesome refactoring,
56+
documentation, typo-fixing, and testing work. We appreciate it so much!
57+
58+
[data-pup]: https://github.com/data-pup
59+
[sendilkumarn]: https://github.com/sendilkumarn
60+
[Andy-Bell]: https://github.com/Andy-Bell
61+
[steveklabnik]: https://github.com/steveklabnik
62+
[jasondavies]: https://github.com/jasondavies
63+
[edsrzf]: https://github.com/edsrzf
64+
65+
## 💥 0.1.0
66+
67+
- First release!

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.1.0"
4+
version = "0.2.0"
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)