File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
17
## v0.33.0 (2024-05-21)
4
18
5
19
* Enhancements
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule ExDoc.Mixfile do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/elixir-lang/ex_doc"
5
- @ version "0.34.0-dev "
5
+ @ version "0.34.0"
6
6
7
7
def project do
8
8
[
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ defmodule ExDoc.Retriever.ErlangTest do
306
306
assert type1 . doc |> DocAST . to_string ( ) =~ "type1/0 docs."
307
307
308
308
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>()."
310
310
311
311
assert equiv_type1 . id == "t:equiv_type1/0"
312
312
assert equiv_type1 . type == :type
You can’t perform that action at this time.
0 commit comments