Skip to content

Commit

Permalink
Release v0.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed May 30, 2024
1 parent d1b0950 commit 9d19317
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## v0.34.0 (2024-05-30)

This release requires Elixir v1.13.

* Enhancements
* Allow several assets to be copied by passing a map to `:assets`
* Improve compatibility when hosting ExDoc on a platform that strips `.html`

* Bug fixes
* Link to the latest version of Erlang/OTP docs

* Deprecations
* Deprecate passing a binary to `:assets`

## v0.33.0 (2024-05-21)

* Enhancements
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule ExDoc.Mixfile do
use Mix.Project

@source_url "https://github.com/elixir-lang/ex_doc"
@version "0.34.0-dev"
@version "0.34.0"

def project do
[
Expand Down
2 changes: 1 addition & 1 deletion test/ex_doc/retriever/erlang_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ defmodule ExDoc.Retriever.ErlangTest do
assert type1.doc |> DocAST.to_string() =~ "type1/0 docs."

assert type1.spec |> Erlang.autolink_spec(current_kfa: {:type, :type1, 0}) ==
"type1() :: <a href=\"https://www.erlang.org/doc/man/erlang.html#type-atom\">atom</a>()."
"type1() :: <a href=\"https://www.erlang.org/doc/apps/erts/erlang.html#t:atom/0\">atom</a>()."

assert equiv_type1.id == "t:equiv_type1/0"
assert equiv_type1.type == :type
Expand Down

0 comments on commit 9d19317

Please sign in to comment.