Skip to content

Commit

Permalink
Merge pull request #158 from brson/bump
Browse files Browse the repository at this point in the history
Bump version to 0.114.2
  • Loading branch information
brson authored Oct 18, 2023
2 parents 37247cd + 8740122 commit 1316dbc
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.114.2

- Added the "dwarf" cargo feature, disabled by default.
- [Fixed link-time regression in 0.114.1](https://github.com/brson/wasm-opt-rs/issues/154)

0.114.1 added missing DWARF passes. Unfortunately these passes, taken from
LLVM code, cause duplicate symbol linker errors when linked into a program
that links to LLVM. For now we have put the compilation of these passes under
the "dwarf" flag and made them non-default. In a future release "dwarf" will
be a default feature. Version 0.114.1 has been yanked.

## 0.114.1

- [Compiled missing DWARF passes](https://github.com/brson/wasm-opt-rs/pull/151).
Expand Down
4 changes: 2 additions & 2 deletions components/conformance-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conformance-tests"
version = "0.114.1"
version = "0.114.2"
description = "Tests against binaryen"
license = "MIT / Apache-2.0"
edition = "2018"
Expand All @@ -11,7 +11,7 @@ anyhow = "1.0.58"

[dev-dependencies]
anyhow = "1.0.58"
wasm-opt = { path = "../wasm-opt", version = "0.114.1" }
wasm-opt = { path = "../wasm-opt", version = "0.114.2" }
tempfile = "3.3.0"

[features]
Expand Down
4 changes: 2 additions & 2 deletions components/wasm-opt-cxx-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-opt-cxx-sys"
version = "0.114.1"
version = "0.114.2"
description = "wasm-opt bindings via cxx"
license = "MIT / Apache-2.0"
edition = "2018"
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
[dependencies]
anyhow = "1.0.58"
cxx = "1.0.79"
wasm-opt-sys = { path = "../wasm-opt-sys", version = "0.114.1" }
wasm-opt-sys = { path = "../wasm-opt-sys", version = "0.114.2" }

[build-dependencies]
anyhow = "1.0.58"
Expand Down
2 changes: 1 addition & 1 deletion components/wasm-opt-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-opt-sys"
version = "0.114.1"
version = "0.114.2"
description = "Native wasm-opt build"
license = "MIT / Apache-2.0"
edition = "2018"
Expand Down
6 changes: 3 additions & 3 deletions components/wasm-opt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-opt"
version = "0.114.1"
version = "0.114.2"
description = "wasm-opt bindings"
license = "MIT / Apache-2.0"
edition = "2018"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
[dependencies]
anyhow = "1.0.58"
libc = "0.2.126"
wasm-opt-sys = { path = "../wasm-opt-sys", version = "0.114.1" }
wasm-opt-cxx-sys = { path = "../wasm-opt-cxx-sys", version = "0.114.1" }
wasm-opt-sys = { path = "../wasm-opt-sys", version = "0.114.2" }
wasm-opt-cxx-sys = { path = "../wasm-opt-cxx-sys", version = "0.114.2" }
strum = "0.24"
strum_macros = "0.24"
thiserror = "1.0.32"
Expand Down

0 comments on commit 1316dbc

Please sign in to comment.