File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.34.0 (2024-05-30)
4+
5+ This release requires Elixir v1.13.
6+
7+ * Enhancements
8+ * Allow several assets to be copied by passing a map to ` :assets `
9+ * Improve compatibility when hosting ExDoc on a platform that strips ` .html `
10+
11+ * Bug fixes
12+ * Link to the latest version of Erlang/OTP docs
13+
14+ * Deprecations
15+ * Deprecate passing a binary to ` :assets `
16+
317## v0.33.0 (2024-05-21)
418
519 * Enhancements
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule ExDoc.Mixfile do
22 use Mix.Project
33
44 @ source_url "https://github.com/elixir-lang/ex_doc"
5- @ version "0.34.0-dev "
5+ @ version "0.34.0"
66
77 def project do
88 [
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ defmodule ExDoc.Retriever.ErlangTest do
306306 assert type1 . doc |> DocAST . to_string ( ) =~ "type1/0 docs."
307307
308308 assert type1 . spec |> Erlang . autolink_spec ( current_kfa: { :type , :type1 , 0 } ) ==
309- "type1() :: <a href=\" https://www.erlang.org/doc/man/ erlang.html#type- atom\" >atom</a>()."
309+ "type1() :: <a href=\" https://www.erlang.org/doc/apps/erts/ erlang.html#t: atom/0 \" >atom</a>()."
310310
311311 assert equiv_type1 . id == "t:equiv_type1/0"
312312 assert equiv_type1 . type == :type
You can’t perform that action at this time.
0 commit comments