Skip to content

Commit 0955d69

Browse files
FelonEkonomclaude
andcommitted
Fix pads section leaking into llms.txt synopsis, bump to 1.2.7
Ensure double newline separation between @moduledoc and appended pads documentation so ex_doc synopsis extraction stops before ## Pads. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c37cd56 commit 0955d69

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/membrane/core/child.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ defmodule Membrane.Core.Child do
3737
|> Enum.filter(& &1)
3838
|> Enum.reduce(moduledoc, fn doc, moduledoc ->
3939
quote do
40-
unquote(moduledoc) <> unquote(doc)
40+
unquote(moduledoc) <> "\n" <> unquote(doc)
4141
end
4242
end)
4343

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Membrane.Mixfile do
22
use Mix.Project
33

4-
@version "1.2.6"
4+
@version "1.2.7"
55
@source_ref "v#{@version}"
66
@hex_packages_path "scripts/elixir/hex_packages.exs"
77

0 commit comments

Comments
 (0)