diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ab136ca..043cc7d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,14 +18,17 @@ Types of changes put your changes here -## Added +## [0.8.3] - 22023-05-24 + +### Added * added support for `riscv64gc-unknown-linux-gnu` * added support for OTP 26 -## Changed +### Changed * updated rustler from 0.27.0 to 0.28.0 +* updated wasmtime from 4.0.1 to 9.0.1 ## [0.8.2] - 2023-01-08 diff --git a/README.md b/README.md index 6ee905f3..8d579ad3 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ dependencies in `mix.exs`: ```elixir def deps do [ - {:wasmex, "~> 0.8.2"} + {:wasmex, "~> 0.8.3"} ] end ``` diff --git a/mix.exs b/mix.exs index 38d1e823..573141b0 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Wasmex.MixProject do use Mix.Project - @version "0.8.2" + @version "0.8.3" def project do [ diff --git a/native/wasmex/Cargo.lock b/native/wasmex/Cargo.lock index fd469eba..64dfb1de 100644 --- a/native/wasmex/Cargo.lock +++ b/native/wasmex/Cargo.lock @@ -1422,7 +1422,7 @@ dependencies = [ [[package]] name = "wasmex" -version = "0.8.2" +version = "0.8.3" dependencies = [ "once_cell", "rand", diff --git a/native/wasmex/Cargo.toml b/native/wasmex/Cargo.toml index e701213c..258daaea 100644 --- a/native/wasmex/Cargo.toml +++ b/native/wasmex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmex" -version = "0.8.2" +version = "0.8.3" authors = ["Philipp Tessenow "] description = "Elixir extension to run WebAssembly binaries through wasmtime" readme = "README.md"