diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cfa8988..306585e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 🌠 0.3.1 + +Babby's first point release! Are we a real project now? + +### 🤕 Fixes + +- **fixed `init` `Is a Directory` error - [ashleygwilliams], [pull/139]** + + Our new logging feature accidentally introduced a regression into 0.3.0. When + calling `wasm-pack init`, if a directory was not passed, a user would receive + a "Is a Directory" Error. Sorry about that! Thanks to [jbolila] for filing + [issue/136]! + +[pull/139]: https://github.com/ashleygwilliams/wasm-pack/pull/139 +[issue/136]: https://github.com/ashleygwilliams/wasm-pack/issues/136 +[jbolila]: https://github.com/jbolila + +- **typescript files were not included in published package - [danreeves], [pull/138]** + + Generating Typescript type files by default was a pretty rad feature in + 0.3.0 but we accidentally forgot to ensure they were included in the + published package. Thanks so much to [danreeves] for catching this issue + and fixing it for us! + +[danreeves]: https://github.com/danreeves +[pull/138]: https://github.com/ashleygwilliams/wasm-pack/pull/138 + ## 💫 0.3.0 ### ✨ Features diff --git a/Cargo.lock b/Cargo.lock index 760a6d4a..526cd760 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -646,7 +646,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-pack" -version = "0.3.0" +version = "0.3.1" dependencies = [ "console 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index fbba5b3a..d3544d5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wasm-pack" description = "pack up the wasm and publish it to npm!" -version = "0.3.0" +version = "0.3.1" authors = ["Ashley Williams "] repository = "https://github.com/ashleygwilliams/wasm-pack.git" license = "MIT/Apache-2.0"