From 799fe4efbf71365ff72d96d05a921d28ef07b6eb Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Fri, 21 Aug 2026 17:08:35 +0000 Subject: [PATCH] Add doc annotation for events being available since 1.8.0 --- lib/statix.ex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/statix.ex b/lib/statix.ex index fd03fa0..0ff15ea 100644 --- a/lib/statix.ex +++ b/lib/statix.ex @@ -289,11 +289,13 @@ defmodule Statix do :ok """ + @doc since: "1.8.0" @callback send_event(title :: iodata, text :: iodata, options) :: on_send @doc """ Same as `send_event(title, text, [])`. """ + @doc since: "1.8.0" @callback send_event(title :: iodata, text :: iodata) :: on_send @doc """