Release Wasmtime 0.31.0 (#3489)

* Bump Wasmtime to 0.31.0

[automatically-tag-and-release-this-commit]

* Update 0.31.0 release notes

Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com>
Co-authored-by: Alex Crichton <alex@alexcrichton.com>
This commit is contained in:
wasmtime-publish
2021-10-29 09:09:35 -05:00
committed by GitHub
parent 0737afe07e
commit c1a6a0523d
48 changed files with 229 additions and 206 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic"
version = "0.77.0"
version = "0.78.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
@@ -10,10 +10,10 @@ description = "DSL and compiler for generating peephole optimizers"
[dependencies]
anyhow = "1.0.27"
peepmatic-automata = { version = "=0.77.0", path = "crates/automata", features = ["dot"] }
peepmatic-macro = { version = "=0.77.0", path = "crates/macro" }
peepmatic-runtime = { version = "=0.77.0", path = "crates/runtime", features = ["construct"] }
peepmatic-traits = { version = "=0.77.0", path = "crates/traits" }
peepmatic-automata = { version = "=0.78.0", path = "crates/automata", features = ["dot"] }
peepmatic-macro = { version = "=0.78.0", path = "crates/macro" }
peepmatic-runtime = { version = "=0.78.0", path = "crates/runtime", features = ["construct"] }
peepmatic-traits = { version = "=0.78.0", path = "crates/traits" }
serde = { version = "1.0.105", features = ["derive"] }
wast = "38.0.0"
z3 = { version = "0.7.1", features = ["static-link-z3"] }

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-automata"
version = "0.77.0"
version = "0.78.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-macro"
version = "0.77.0"
version = "0.78.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-runtime"
version = "0.77.0"
version = "0.78.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
@@ -12,8 +12,8 @@ description = "Runtime support for peepmatic peephole optimizers"
bincode = "1.2.1"
bumpalo = "3.2.0"
log = "0.4.8"
peepmatic-automata = { version = "=0.77.0", path = "../automata", features = ["serde"] }
peepmatic-traits = { version = "=0.77.0", path = "../traits" }
peepmatic-automata = { version = "=0.78.0", path = "../automata", features = ["serde"] }
peepmatic-traits = { version = "=0.78.0", path = "../traits" }
serde = { version = "1.0.105", features = ["derive"] }
thiserror = "1.0.15"
wast = { version = "38.0.0", optional = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-souper"
version = "0.77.0"
version = "0.78.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
@@ -14,6 +14,6 @@ souper-ir = { version = "2.1.0", features = ["parse"] }
log = "0.4.8"
[dev-dependencies]
peepmatic = { path = "../..", version = "=0.77.0" }
peepmatic-test-operator = { version = "=0.77.0", path = "../test-operator" }
peepmatic = { path = "../..", version = "=0.78.0" }
peepmatic-test-operator = { version = "=0.78.0", path = "../test-operator" }
wast = "38.0.0"

View File

@@ -2,13 +2,13 @@
name = "peepmatic-test-operator"
description = "Operator for usage in peepmatic tests"
license = "Apache-2.0 WITH LLVM-exception"
version = "0.77.0"
version = "0.78.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
peepmatic-traits = { version = "=0.77.0", path = "../traits" }
peepmatic-traits = { version = "=0.78.0", path = "../traits" }
serde = { version = "1.0.105", features = ["derive"] }
wast = "38.0.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-traits"
version = "0.77.0"
version = "0.78.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"