Skip to content

Commit

Permalink
Fixes post 3.2.0-beta.1 release (but needed for the crates publicatio…
Browse files Browse the repository at this point in the history
…n) (#3705)
  • Loading branch information
ptitSeb authored Mar 23, 2023
1 parent 82974ac commit c9743a0
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
6 changes: 3 additions & 3 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 lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ wasmer-wasix-experimental-io-devices = { version = "0.1.0", path = "../wasi-expe
wasmer-wast = { version = "=3.2.0-beta.1", path = "../../tests/lib/wast", optional = true }
wasmer-cache = { version = "=3.2.0-beta.1", path = "../cache", features = ["blake3-pure"] }
wasmer-types = { version = "=3.2.0-beta.1", path = "../types", features = ["enable-serde"] }
wasmer-registry = { version = "=4.0.0", path = "../registry" }
wasmer-registry = { version = "4.1.0", path = "../registry" }
wasmer-object = { version = "=3.2.0-beta.1", path = "../object", optional = true }
virtual-fs = { version = "0.1.0", path = "../vfs", default-features = false, features = ["host-fs"] }
virtual-net = { version = "0.1.0", path = "../vnet" }
Expand Down
2 changes: 1 addition & 1 deletion lib/registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-registry"
version = "4.0.0"
version = "4.1.0"
edition = "2021"
license = "MIT"
description = "Crate to interact with the wasmer registry (wapm.io), download packages, etc."
Expand Down
6 changes: 5 additions & 1 deletion lib/wai-bindgen-wasmer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wai-bindgen-wasmer"
description = "Generate WAI glue for a Rust Wasmer host"
version = "0.2.3"
version = "0.2.4"
edition = "2018"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand Down Expand Up @@ -29,3 +29,7 @@ tracing = ["tracing-lib", "wai-bindgen-wasmer-impl/tracing"]
# Enables async support for generated code, although when enabled this still
# needs to be configured through the macro invocation.
async = ["async-trait", "wai-bindgen-wasmer-impl/async"]

# Wasmer features
js = ["wasmer/js", "wasmer/std"]
sys = ["wasmer/sys"]
2 changes: 1 addition & 1 deletion lib/wasi-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "wasmer-wasix-types"
version = "0.1.0"
description = "WASI and WASIX types for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "wasix", "sandbox", "ABI"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
authors = ["Wasmer Engineering Team <[email protected]>"]
repository = "https://github.com/wasmerio/wasmer"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions lib/wasi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "wasmer-wasix"
version = "0.1.0"
description = "WASI and WASIX implementation library for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "wasix", "sandbox", "ABI"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
authors = ["Wasmer Engineering Team <[email protected]>"]
repository = "https://github.com/wasmerio/wasmer"
license = "MIT"
Expand Down Expand Up @@ -52,7 +52,7 @@ linked_hash_set = { version = "0.1" }
# the various compilers
wasmer-compiler = { version = "=3.2.0-beta.1", path = "../compiler", features = [ "translator" ], optional = true }
http = "0.2.8"
wai-bindgen-wasmer = { path = "../wai-bindgen-wasmer", version = "0.2.3", features = ["tracing"] }
wai-bindgen-wasmer = { path = "../wai-bindgen-wasmer", version = "0.2.4", features = ["tracing"] }
heapless = "0.7.16"
once_cell = "1.17.0"
pin-project = "1.0.12"
Expand Down
2 changes: 1 addition & 1 deletion scripts/make-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def make_release(version):
if proc.returncode == 0:
for line in proc.stdout:
line = line.decode("utf-8").rstrip()
if "Merge #" + pr_number in line:
if "Merge pull request #" + pr_number in line:
correct_checkout = line
else:
raise Exception("could not git log branch " + RELEASE_VERSION_WITH_V)
Expand Down
4 changes: 3 additions & 1 deletion scripts/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
# compiler by default otherwise it won't work standalone
"publish_features": {
"wasmer-cli": "default,cranelift",
"wasmer-wasi": "sys",
"wasmer-wasix": "sys",
"wasmer-wasix-types": "sys",
"wai-bindgen-wasmer": "sys",
},
# workspace members we want to publish but whose path doesn't start by
# "./lib/"
Expand Down

0 comments on commit c9743a0

Please sign in to comment.