File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments