Update versions via script

This commit is contained in:
Felix Schütt
2022-11-02 14:52:12 +01:00
parent 9796fd4fc9
commit d2364f40bb
33 changed files with 155 additions and 155 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "wasmer-compiler"
version = "3.0.0-rc.1"
version = "3.0.0-rc.2"
description = "Base compiler abstraction for Wasmer WebAssembly runtime"
categories = ["wasm", "no-std"]
keywords = ["wasm", "webassembly", "compiler"]
@@ -11,8 +11,8 @@ readme = "README.md"
edition = "2018"
[dependencies]
wasmer-types = { path = "../types", version = "=3.0.0-rc.1", default-features = false }
wasmer-object = { path = "../object", version = "=3.0.0-rc.1", optional = true }
wasmer-types = { path = "../types", version = "=3.0.0-rc.2", default-features = false }
wasmer-object = { path = "../object", version = "=3.0.0-rc.2", optional = true }
wasmparser = { version = "0.83", optional = true, default-features = false }
enumset = "1.0.2"
hashbrown = { version = "0.11", optional = true }
@@ -32,7 +32,7 @@ leb128 = "0.2"
enum-iterator = "0.7.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-vm = { path = "../vm", version = "=3.0.0-rc.1" }
wasmer-vm = { path = "../vm", version = "=3.0.0-rc.2" }
region = { version = "3.0" }
[target.'cfg(target_os = "windows")'.dependencies]