Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.7.1](https://github.com/wowica/xogmios/releases/tag/v0.7.1) (2025-07-16)

### Fixed

- Fixed a spec warning on `Xogmios.ChainSync.call/2` function.

## [v0.7.0](https://github.com/wowica/xogmios/releases/tag/v0.7.0) (2025-07-11)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion lib/xogmios/chain_sync.ex
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ defmodule Xogmios.ChainSync do
This function is useful to send messages to the ChainSync process from outside
of the ChainSync module. The message should be handled by a matching `c:handle_info/2` callback.
"""
@spec call(pid(), term()) :: {:ok, term()} | {:error, term()}
@spec call(pid() | atom(), term()) :: {:ok, term()} | {:error, term()}
def call(pid, message) do
case get_ws_pid(pid) do
{:ok, ws_pid} ->
Expand Down
Loading