Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to version 0.12.0 #127

Merged
merged 2 commits into from Sep 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 1 addition & 7 deletions .travis.yml
Expand Up @@ -67,12 +67,6 @@ matrix:
script:
|
which cargo-fuzz || cargo install cargo-fuzz

(for (( ; ; )); do
tail -n 100 fuzz.log || true
sleep 10
done) &

# When the fuzzing fails, the logs are too big for Travis, so just
# show the relevant tail portion of the log.
cargo fuzz run wasm-opt-ttf -- -max_total_time=300 > fuzz.log 2>&1 || {
Expand All @@ -85,7 +79,7 @@ matrix:
which cargo-fuzz || cargo install cargo-fuzz
# When the fuzzing fails, the logs are too big for Travis, so just
# show the relevant tail portion of the log.
cargo fuzz run raw -- -max_total_time=300 > fuzz.log 2>&1 || {
cargo fuzz run raw -- -max_total_time=300 -rss_limit_mb=4096 > fuzz.log 2>&1 || {
tail -n 1000 fuzz.log && exit 1
}

Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Expand Up @@ -32,6 +32,30 @@ Released YYYY-MM-DD.

--------------------------------------------------------------------------------

## 0.12.0

Released 2019-09-10.

### Added

* Added support for multi-value Wasm!

* Added `ModuleExports::get_exported_{func, table, memory, global}` helper
functions to get an export by the id of the thing that it is exporting (if
any).

* Added fuzz testing with libFuzzer and `cargo fuzz`.

### Changed

* No longer using the "derive" feature from `failure`, which should result in
slimmer dependency graphs and faster builds.

* `Module::emit_wasm` is no longer fallible. It never actually did ever return
an `Err` and now the type signature reflects that.

--------------------------------------------------------------------------------

## 0.11.0

Released 2019-08-13.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -2,7 +2,7 @@
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
name = "walrus"
version = "0.11.0"
version = "0.12.0"
license = "MIT/Apache-2.0"
readme = "README.md"
categories = ["wasm"]
Expand All @@ -28,7 +28,7 @@ id-arena = "2.2.1"
leb128 = "0.2.4"
log = "0.4.8"
rayon = { version = "1.1.0", optional = true }
walrus-macro = { path = './crates/macro', version = '=0.11.0' }
walrus-macro = { path = './crates/macro', version = '=0.12.0' }
wasmparser = "0.37.1"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/macro/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
name = "walrus-macro"
version = "0.11.0"
version = "0.12.0"
license = "MIT/Apache-2.0"
categories = ["wasm"]
repository = "https://github.com/rustwasm/walrus/tree/crates/macro"
Expand Down