Release version 2.2.1

This commit is contained in:
Amanieu d'Antras
2022-03-15 11:02:31 +00:00
parent 8b9af9bee7
commit fe9d2d8d22
33 changed files with 174 additions and 169 deletions

10
lib/cache/Cargo.toml vendored
View File

@@ -1,6 +1,6 @@
[package]
name = "wasmer-cache"
version = "2.2.0"
version = "2.2.1"
description = "Cache system for Wasmer WebAssembly runtime"
categories = ["wasm", "caching"]
keywords = ["wasm", "webassembly", "cache"]
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"
[dependencies]
wasmer = { path = "../api", version = "=2.2.0", default-features = false, features = ["sys"] }
wasmer = { path = "../api", version = "=2.2.1", default-features = false, features = ["sys"] }
hex = "0.4"
thiserror = "1"
blake3 = "1.0"
@@ -20,9 +20,9 @@ blake3 = "1.0"
criterion = "0.3"
tempfile = "3"
rand = "0.8.3"
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=2.2.0" }
wasmer-engine-universal = { path = "../engine-universal", version = "=2.2.0" }
wasmer-engine-dylib = { path = "../engine-dylib", version = "=2.2.0" }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=2.2.1" }
wasmer-engine-universal = { path = "../engine-universal", version = "=2.2.1" }
wasmer-engine-dylib = { path = "../engine-dylib", version = "=2.2.1" }
[features]
blake3-pure = ["blake3/pure"]