diff --git a/CHANGELOG.md b/CHANGELOG.md index 31fc1f3..37882ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ Types of changes - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## [0.9.1 - 2024-07-27] + +Same as 0.9.1, but with correct checksum for precompiled binaries + ## [0.9.0 - 2024-07-25] Wasmtime rewrote their fuel-related API and simplified it. To remain consistent with Wasmtime, we follow this change in this release. A Wasmex `Store` now only implements `set_fuel/2` and `get_fuel/1`. All other methods are removed with this release. diff --git a/README.md b/README.md index ade8245..3db3da3 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ dependencies in `mix.exs`: ```elixir def deps do [ - {:wasmex, "~> 0.9.0"} + {:wasmex, "~> 0.9.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 073696c..f1b701f 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Wasmex.MixProject do use Mix.Project - @version "0.9.0" + @version "0.9.1" def project do [ diff --git a/native/wasmex/Cargo.lock b/native/wasmex/Cargo.lock index b7b87a1..cf21fa7 100644 --- a/native/wasmex/Cargo.lock +++ b/native/wasmex/Cargo.lock @@ -1696,7 +1696,7 @@ dependencies = [ [[package]] name = "wasmex" -version = "0.9.0" +version = "0.9.1" dependencies = [ "once_cell", "rand", diff --git a/native/wasmex/Cargo.toml b/native/wasmex/Cargo.toml index 1766fde..b3f540c 100644 --- a/native/wasmex/Cargo.toml +++ b/native/wasmex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmex" -version = "0.9.0" +version = "0.9.1" authors = ["Philipp Tessenow "] description = "Elixir extension to run WebAssembly binaries through wasmtime" readme = "README.md"