From 0f6dc2181fcc23120e0a4802cf223941cfa15710 Mon Sep 17 00:00:00 2001 From: Daniel S Jeremiah Date: Mon, 4 Aug 2025 18:51:45 -0400 Subject: [PATCH 1/2] removed reference to deprecated function --- src/gleam/otp/actor.gleam | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gleam/otp/actor.gleam b/src/gleam/otp/actor.gleam index 9ff261c..d12735f 100644 --- a/src/gleam/otp/actor.gleam +++ b/src/gleam/otp/actor.gleam @@ -653,8 +653,7 @@ pub fn send(subject: Subject(msg), msg: msg) -> Nil { /// process. /// /// If a reply is not received within the given timeout then the sender process -/// crashes. If you wish to receive a `Result` rather than crashing see the -/// `process.try_call` function. +/// crashes. /// /// This is a re-export of `process.call`, for the sake of convenience. /// From d42889fb0f511678b3c69a9c514447fb32aff791 Mon Sep 17 00:00:00 2001 From: Daniel S Jeremiah Date: Mon, 4 Aug 2025 18:52:08 -0400 Subject: [PATCH 2/2] updated CHANGELOG --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 558cae8..351c044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.1.0 - 2025-08-04 + +- Refernce to deprecated function `process.try_call` was removed from + `call` function documentation. + ## v1.1.0 - 2025-07-15 - The `call` function in the `gleam/otp/actor` module gains the labels