Skip to content

Commit 9d19317

Browse files
committed
Release v0.34.0
1 parent d1b0950 commit 9d19317

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

Diff for: CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
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

Diff for: mix.exs

+1-1
Original file line numberDiff line numberDiff 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
[

Diff for: test/ex_doc/retriever/erlang_test.exs

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)