File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 0.7.6
3
+ ## 0.7.8
4
+
5
+ * Use ubuntu 22.04 to precompile nif
6
+
7
+ ## 0.7.7
4
8
5
- * Update rusler Rust crate to 0.36.2
9
+ * Update rustler Rust crate to 0.36.2
6
10
7
11
## 0.7.6
8
12
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ The package can be installed by adding `ex_keccak` to your list of dependencies
11
11
``` elixir
12
12
def deps do
13
13
[
14
- {:ex_keccak , " ~> 0.7.7 " }
14
+ {:ex_keccak , " ~> 0.7.8 " }
15
15
]
16
16
end
17
17
```
18
18
19
19
### Force compilation
20
20
21
- This library includes pre-compiled binaries for the native Rust code. If you
21
+ This library includes pre-compiled binaries for the native Rust code. If you
22
22
want to force-compile the Rust code, you can add the following configuration
23
23
to your application:
24
24
@@ -31,7 +31,7 @@ You also need to add Rusler to your dependencies:
31
31
```
32
32
def deps do
33
33
[
34
- {:ex_keccak, "~> 0.7.7 "},
34
+ {:ex_keccak, "~> 0.7.8 "},
35
35
{:rustler, ">= 0.0.0", optional: true}
36
36
]
37
37
end
Original file line number Diff line number Diff line change 1
1
defmodule ExKeccak.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.7.7 "
4
+ @ version "0.7.8 "
5
5
@ source_url "https://github.com/tzumby/ex_keccak"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments