File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
See [ ` UPGRADE.md ` ] ( ./UPGRADE.md ) for additional help when upgrading to newer
9
9
versions.
10
10
11
- ## unreleased
11
+ ## 0.36.2 - 2025-06-09
12
12
13
13
### Added
14
14
15
- ### Fixed
15
+ - ` std::hash::Hash ` implementation for atoms ( # 695 )
16
16
17
- ### Changed
17
+ ### Fixed
18
18
19
- ### Removed
19
+ - Fix typing error in ` rustler_mix ` ( # 696 , thanks @ dkuku )
20
20
21
21
## 0.36.1 - 2025-02-03
22
22
Original file line number Diff line number Diff line change 2
2
name = " rustler"
3
3
description = " Safe Rust wrappers for creating Erlang NIF functions"
4
4
repository = " https://github.com/rusterlium/rustler"
5
- version = " 0.36.1 " # rustler version
5
+ version = " 0.36.2 " # rustler version
6
6
authors = [
" Hansihe <[email protected] >" ]
7
7
license = " MIT/Apache-2.0"
8
8
readme = " ../README.md"
@@ -23,7 +23,7 @@ serde = ["dep:serde"]
23
23
24
24
[dependencies ]
25
25
inventory = " 0.3"
26
- rustler_codegen = { path = " ../rustler_codegen" , version = " 0.36.1 " }
26
+ rustler_codegen = { path = " ../rustler_codegen" , version = " 0.36.2 " }
27
27
num-bigint = { version = " 0.4" , optional = true }
28
28
serde = { version = " 1" , optional = true }
29
29
Original file line number Diff line number Diff line change 2
2
name = " rustler_codegen"
3
3
description = " Compiler plugin for Rustler"
4
4
repository = " https://github.com/rusterlium/rustler/tree/master/rustler_codegen"
5
- version = " 0.36.1 " # rustler_codegen version
5
+ version = " 0.36.2 " # rustler_codegen version
6
6
authors = [
" Hansihe <[email protected] >" ]
7
7
license = " MIT/Apache-2.0"
8
8
readme = " ../README.md"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ This package is available on [Hex.pm](https://hex.pm/packages/rustler). To insta
15
15
``` elixir
16
16
def deps do
17
17
[
18
- {:rustler , " ~> 0.36.1 " , runtime: false }
18
+ {:rustler , " ~> 0.36.2 " , runtime: false }
19
19
]
20
20
end
21
21
```
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Rustler.Mixfile do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/rusterlium/rustler"
5
- @ version "0.36.1 "
5
+ @ version "0.36.2 "
6
6
7
7
def project do
8
8
[
You can’t perform that action at this time.
0 commit comments