Skip to content

Commit

Permalink
Prepare for 0.10.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark McCaskey committed Nov 12, 2019
1 parent 4c14ab0 commit 69950d9
Show file tree
Hide file tree
Showing 22 changed files with 136 additions and 134 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## **[Unreleased]**

## 0.10.0 - 2019-11-11

- [#952](https://github.com/wasmerio/wasmer/pull/952) Use C preprocessor to properly hide trampoline functions on Windows and non-x86_64 targets.

## 0.10.0 - 2019-11-11
Expand Down
146 changes: 73 additions & 73 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer"
version = "0.10.0"
version = "0.10.1"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
edition = "2018"
repository = "https://github.com/wasmerio/wasmer"
Expand Down
6 changes: 3 additions & 3 deletions lib/clif-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-clif-backend"
version = "0.10.0"
version = "0.10.1"
description = "Wasmer runtime Cranelift compiler backend"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
Expand All @@ -9,7 +9,7 @@ edition = "2018"
readme = "README.md"

[dependencies]
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.0" }
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.1" }
cranelift-native = "0.44.0"
cranelift-codegen = "0.44.0"
cranelift-entity = "0.44.0"
Expand All @@ -35,7 +35,7 @@ version = "0.0.7"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["errhandlingapi", "minwindef", "minwinbase", "winnt"] }
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.10.0" }
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.10.1" }

[features]
debug = ["wasmer-runtime-core/debug"]
2 changes: 1 addition & 1 deletion lib/dev-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-dev-utils"
version = "0.10.0"
version = "0.10.1"
description = "Wasmer runtime core library"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
Expand Down
14 changes: 7 additions & 7 deletions lib/emscripten-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-emscripten-tests"
version = "0.10.0"
version = "0.10.1"
description = "Tests for our Emscripten implementation"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
Expand All @@ -9,15 +9,15 @@ publish = false
build = "build/mod.rs"

[dependencies]
wasmer-emscripten = { path = "../emscripten", version = "0.10.0" }
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.0" }
wasmer-clif-backend = { path = "../clif-backend", version = "0.10.0" }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.10.0", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.10.0", optional = true }
wasmer-emscripten = { path = "../emscripten", version = "0.10.1" }
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.1" }
wasmer-clif-backend = { path = "../clif-backend", version = "0.10.1" }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.10.1", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.10.1", optional = true }

[dev-dependencies]
wabt = "0.9.1"
wasmer-dev-utils = { path = "../dev-utils", version = "0.10.0"}
wasmer-dev-utils = { path = "../dev-utils", version = "0.10.1"}

[build-dependencies]
glob = "0.3"
Expand Down
Loading

0 comments on commit 69950d9

Please sign in to comment.