Skip to content

Commit bd0ba8f

Browse files
committed
Update CHANGELOG.md
1 parent 19fa71c commit bd0ba8f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,32 @@
55
### Enhancements
66

77
* Add verifications of the registry cache ets table (`~/.cache/hex/cache.ets`)
8+
89
* Add help when docs download times out
10+
911
* Support `:warn_if_outdated` in deps
1012

13+
Let's say you have the following in `mix.exs`:
14+
15+
```elixir
16+
{:ex_doc, ">= 0.0.0", warn_if_outdated: true, only: :dev}
17+
```
18+
19+
and ExDoc is at version v0.37.2 in `mix.lock`, and v0.37.3 was released.
20+
21+
You will now see:
22+
23+
```sh
24+
$ mix deps.get
25+
Resolving Hex dependencies...
26+
Resolution completed in 0.054s
27+
Unchanged:
28+
ex_doc 0.37.2
29+
warning: the following deps are outdated and set "warn_if_outdated: true":
30+
31+
* ex_doc 0.37.3 is available
32+
```
33+
1134
## v2.1.1 (2024-05-22)
1235

1336
### Bug fixes

0 commit comments

Comments
 (0)