Skip to content

Commit

Permalink
Release Wasmtime 0.33.0 (#3648)
Browse files Browse the repository at this point in the history
* Bump Wasmtime to 0.33.0

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

* Update relnotes for 0.33.0

* Wordsmithing relnotes

Co-authored-by: Wasmtime Publish <[email protected]>
Co-authored-by: Alex Crichton <[email protected]>
  • Loading branch information
3 people authored Jan 5, 2022
1 parent 98f3296 commit 8043c1f
Show file tree
Hide file tree
Showing 42 changed files with 192 additions and 175 deletions.
72 changes: 36 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-cli"
version = "0.32.0"
version = "0.33.0"
authors = ["The Wasmtime Project Developers"]
description = "Command-line interface for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -21,14 +21,14 @@ path = "src/bin/wasmtime.rs"
doc = false

[dependencies]
wasmtime = { path = "crates/wasmtime", version = "0.32.0", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.32.0" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.32.0" }
wasmtime-environ = { path = "crates/environ", version = "=0.32.0" }
wasmtime-wast = { path = "crates/wast", version = "=0.32.0" }
wasmtime-wasi = { path = "crates/wasi", version = "0.32.0" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.32.0", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.32.0", optional = true }
wasmtime = { path = "crates/wasmtime", version = "0.33.0", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.33.0" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.33.0" }
wasmtime-environ = { path = "crates/environ", version = "=0.33.0" }
wasmtime-wast = { path = "crates/wast", version = "=0.33.0" }
wasmtime-wasi = { path = "crates/wasi", version = "0.33.0" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.33.0", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.33.0", optional = true }
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
anyhow = "1.0.19"
target-lexicon = { version = "0.12.0", default-features = false }
Expand Down
17 changes: 17 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

--------------------------------------------------------------------------------

## 0.33.0

Released 2022-01-05.

### Added

* Compiled wasm modules may now optionally omit debugging information about
mapping addresses to source locations, resulting in smaller binaries.
[#3598](https://github.com/bytecodealliance/wasmtime/pull/3598)

* The WebAssembly SIMD proposal is now enabled by default.
[#3601](https://github.com/bytecodealliance/wasmtime/pull/3601)

--------------------------------------------------------------------------------

## 0.32.1

Released 2022-01-04.
Expand All @@ -21,6 +36,8 @@ Released 2022-01-04.
Does not affect Wasm frontend.
[#3610](https://github.com/bytecodealliance/wasmtime/pull/3610)

--------------------------------------------------------------------------------

## 0.32.0

Released 2021-12-13.
Expand Down
Loading

0 comments on commit 8043c1f

Please sign in to comment.