Skip to content

Commit 5d8b483

Browse files
committed
v0.31.0
1 parent dfab815 commit 5d8b483

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Changelog
22

3-
## Unreleased
4-
- The `gleam/erlang` module gains the `hash` and
5-
`bounded_hash` functions.
3+
## v0.31.0 - 2024-11-27
4+
5+
- The `gleam/erlang` module gains the `phash2` and
6+
`bounded_phash2` functions.
67

78
## v0.30.0 - 2024-11-11
89

gleam.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "gleam_erlang"
22

3-
version = "0.30.0"
3+
version = "0.31.0"
44
licences = ["Apache-2.0"]
55
description = "A Gleam library for working with Erlang"
66

src/gleam/erlang.gleam

+3-4
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,8 @@ pub fn priv_directory(name: String) -> Result(String, Nil)
216216
///
217217
/// <https://www.erlang.org/doc/apps/erts/erlang.html#phash2/2>
218218
@external(erlang, "erlang", "phash2")
219-
pub fn bounded_hash(term: anything, limit limit: Int) -> Int
219+
pub fn bounded_phash2(term: anything, limit limit: Int) -> Int
220220

221-
/// Equivalent to hash_range.
222-
/// Returns a value in the range 0..2^27-1
221+
/// Equivalent to `bounded_phash2`, with a upper limit of 2^27-1
223222
@external(erlang, "erlang", "phash2")
224-
pub fn hash(term: anything) -> Int
223+
pub fn phash2(term: anything) -> Int

test/gleam/erlang_test.gleam

+8-8
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ pub fn priv_directory_test() {
8080
let assert True = string.ends_with(dir, "/gleam_stdlib/priv")
8181
}
8282

83-
pub fn bounded_hash_test() {
84-
let assert 9 = erlang.bounded_hash("hello", limit: 10)
85-
let assert 0 = erlang.bounded_hash([5, 2, 8], limit: 10)
86-
let assert 82 = erlang.bounded_hash(Ok(#("testing", 123)), limit: 200)
83+
pub fn bounded_phash2_test() {
84+
let assert 9 = erlang.bounded_phash2("hello", limit: 10)
85+
let assert 0 = erlang.bounded_phash2([5, 2, 8], limit: 10)
86+
let assert 82 = erlang.bounded_phash2(Ok(#("testing", 123)), limit: 200)
8787
}
8888

89-
pub fn hash_test() {
90-
let assert 47_480_723 = erlang.hash("hello")
91-
let assert 79_761_634 = erlang.hash([5, 2, 8])
92-
let assert 133_777_698 = erlang.hash(Ok(#("testing", 123)))
89+
pub fn phash2_test() {
90+
let assert 47_480_723 = erlang.phash2("hello")
91+
let assert 79_761_634 = erlang.phash2([5, 2, 8])
92+
let assert 133_777_698 = erlang.phash2(Ok(#("testing", 123)))
9393
}

0 commit comments

Comments
 (0)