diff --git a/CHANGELOG.md b/CHANGELOG.md index 33358fc..f46886d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog -## 0.7.6 +## 0.7.8 + + * Use ubuntu 22.04 to precompile nif + +## 0.7.7 - * Update rusler Rust crate to 0.36.2 + * Update rustler Rust crate to 0.36.2 ## 0.7.6 diff --git a/README.md b/README.md index 28b7107..813d743 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,14 @@ The package can be installed by adding `ex_keccak` to your list of dependencies ```elixir def deps do [ - {:ex_keccak, "~> 0.7.7"} + {:ex_keccak, "~> 0.7.8"} ] end ``` ### Force compilation -This library includes pre-compiled binaries for the native Rust code. If you +This library includes pre-compiled binaries for the native Rust code. If you want to force-compile the Rust code, you can add the following configuration to your application: @@ -31,7 +31,7 @@ You also need to add Rusler to your dependencies: ``` def deps do [ - {:ex_keccak, "~> 0.7.7"}, + {:ex_keccak, "~> 0.7.8"}, {:rustler, ">= 0.0.0", optional: true} ] end diff --git a/mix.exs b/mix.exs index 8780cd6..0652c25 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ExKeccak.MixProject do use Mix.Project - @version "0.7.7" + @version "0.7.8" @source_url "https://github.com/tzumby/ex_keccak" def project do