Skip to content

Commit 535da4c

Browse files
author
Mark McCaskey
committed
update to version 0.5.3 for wapm bug fix
1 parent c1fabc9 commit 535da4c

File tree

18 files changed

+139
-138
lines changed

18 files changed

+139
-138
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All PRs to the Wasmer repository must add to this file.
55
Blocks of changes will separated by version increments.
66

77
## **[Unreleased]**
8+
## 0.5.3
9+
- [#523](https://github.com/wasmerio/wasmer/pull/523) Update wapm version to fix bug related to signed packages in the global namespace and locally-stored public keys
810

911
## 0.5.2 - 2019-07-02
1012
- [#521](https://github.com/wasmerio/wasmer/pull/521) Update Wapm-cli, bump version numbers

Cargo.lock

+94-95
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
55
edition = "2018"
66
repository = "https://github.com/wasmerio/wasmer"

lib/clif-backend/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "wasmer-clif-backend"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer runtime Cranelift compiler backend"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
77
repository = "https://github.com/wasmerio/wasmer"
88
edition = "2018"
99

1010
[dependencies]
11-
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" }
11+
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" }
1212
cranelift-native = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" }
1313
cranelift-codegen = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" }
1414
cranelift-entity = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" }
@@ -34,7 +34,7 @@ version = "0.0.7"
3434

3535
[target.'cfg(windows)'.dependencies]
3636
winapi = { version = "0.3", features = ["errhandlingapi", "minwindef", "minwinbase", "winnt"] }
37-
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.5.2" }
37+
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.5.3" }
3838

3939
[features]
4040
debug = ["wasmer-runtime-core/debug"]

lib/dev-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-dev-utils"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer runtime core library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]

lib/emscripten/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-emscripten"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer runtime emscripten implementation library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -14,17 +14,17 @@ hashbrown = "0.1"
1414
lazy_static = "1.2.0"
1515
libc = "0.2.49"
1616
time = "0.1.41"
17-
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" }
18-
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.2", optional = true }
19-
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" }
20-
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true }
17+
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.3" }
18+
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.3", optional = true }
19+
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" }
20+
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true }
2121

2222
[target.'cfg(windows)'.dependencies]
2323
rand = "0.6"
2424

2525
[dev-dependencies]
2626
wabt = "0.7.2"
27-
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.2"}
27+
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.3"}
2828

2929
[build-dependencies]
3030
glob = "0.2.11"

lib/llvm-backend/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "wasmer-llvm-backend"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
authors = ["Lachlan Sneff <lachlan.sneff@gmail.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" }
8+
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" }
99
inkwell = { git = "https://github.com/wasmerio/inkwell", branch = "llvm7-0" }
1010
wasmparser = "0.32.1"
1111
hashbrown = "0.1.8"

lib/middleware-common/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-middleware-common"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
repository = "https://github.com/wasmerio/wasmer"
55
description = "Wasmer runtime common middlewares"
66
license = "MIT"
@@ -9,9 +9,9 @@ edition = "2018"
99

1010
[dependencies]
1111
wasmer-runtime-core = { path = "../runtime-core" }
12-
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" }
13-
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.2", optional = true }
14-
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true }
12+
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.3" }
13+
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.3", optional = true }
14+
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true }
1515

1616
[dev-dependencies]
1717
wabt = "0.7.4"

lib/runtime-abi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-runtime-abi"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer runtime core library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]

lib/runtime-c-api/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-runtime-c-api"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer C API library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -16,11 +16,11 @@ libc = "0.2"
1616

1717
[dependencies.wasmer-runtime]
1818
path = "../runtime"
19-
version = "0.5.2"
19+
version = "0.5.3"
2020

2121
[dependencies.wasmer-runtime-core]
2222
path = "../runtime-core"
23-
version = "0.5.2"
23+
version = "0.5.3"
2424

2525
[features]
2626
debug = ["wasmer-runtime/debug"]

lib/runtime-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-runtime-core"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer runtime core library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]

lib/runtime/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-runtime"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer runtime library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,17 +9,17 @@ edition = "2018"
99
readme = "README.md"
1010

1111
[dependencies]
12-
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true }
12+
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true }
1313
lazy_static = "1.2.0"
1414
memmap = "0.7.0"
1515

1616
[dependencies.wasmer-runtime-core]
1717
path = "../runtime-core"
18-
version = "0.5.2"
18+
version = "0.5.3"
1919

2020
[dependencies.wasmer-clif-backend]
2121
path = "../clif-backend"
22-
version = "0.5.2"
22+
version = "0.5.3"
2323
optional = true
2424

2525
[dev-dependencies]

lib/singlepass-backend/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "wasmer-singlepass-backend"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
repository = "https://github.com/wasmerio/wasmer"
55
description = "Wasmer runtime single pass compiler backend"
66
license = "MIT"
77
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
88
edition = "2018"
99

1010
[dependencies]
11-
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" }
11+
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" }
1212
wasmparser = "0.32.1"
1313
dynasm = "0.3.2"
1414
dynasmrt = "0.3.1"

lib/spectests/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-spectests"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer spectests library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,10 +9,10 @@ edition = "2018"
99
build = "build/mod.rs"
1010

1111
[dependencies]
12-
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" }
13-
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" }
14-
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.2", optional = true }
15-
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true }
12+
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" }
13+
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.3" }
14+
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.3", optional = true }
15+
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true }
1616

1717
[build-dependencies]
1818
wabt = "0.7.2"

lib/wasi/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-wasi"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer runtime WASI implementation library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,7 +9,7 @@ edition = "2018"
99
build = "build/mod.rs"
1010

1111
[dependencies]
12-
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" }
12+
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" }
1313
libc = "0.2.50"
1414
rand = "0.6.5"
1515
# wasmer-runtime-abi = { path = "../runtime-abi" }
@@ -18,7 +18,7 @@ generational-arena = "0.2.2"
1818
log = "0.4.6"
1919
byteorder = "1.3.1"
2020
# hack to get tests to work
21-
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true }
21+
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true }
2222

2323
[target.'cfg(windows)'.dependencies]
2424
winapi = "0.3"
@@ -27,8 +27,8 @@ winapi = "0.3"
2727
glob = "0.2.11"
2828

2929
[dev-dependencies]
30-
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" }
31-
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.2"}
30+
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.3" }
31+
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.3"}
3232

3333
[features]
3434
clif = []

lib/win-exception-handler/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "wasmer-win-exception-handler"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Wasmer runtime exception handling for Windows"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
77
repository = "https://github.com/wasmerio/wasmer"
88
edition = "2018"
99

1010
[target.'cfg(windows)'.dependencies]
11-
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" }
11+
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" }
1212
winapi = { version = "0.3", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] }
1313
libc = "0.2.49"
1414

update_version_numbers.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
PREVIOUS_VERSION='0.5.1'
2-
NEXT_VERSION='0.5.2'
1+
PREVIOUS_VERSION='0.5.2'
2+
NEXT_VERSION='0.5.3'
33

44
# quick hack
55
fd Cargo.toml --exec sed -i '' "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/"

0 commit comments

Comments
 (0)