Skip to content

Commit

Permalink
Fix outdated suggestion of which library version to import
Browse files Browse the repository at this point in the history
  • Loading branch information
g-andrade committed Apr 16, 2021
1 parent b175004 commit 3a79993
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rebar.config
``` erlang
{deps,
[% [...]
{tls_certificate_check, "~> 1.3"}
{tls_certificate_check, "~> 1.4"}
]}.
```

Expand Down Expand Up @@ -64,7 +64,7 @@ mix.exs
defp deps do
[
# [...]
{:tls_certificate_check, "~> 1.3"}
{:tls_certificate_check, "~> 1.4"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions doc/overview.edoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ starts and made available to the API through
<pre lang="erlang" class="erlang">
{deps,
[% [...]
{tls_certificate_check, "~> 1.3"}
{tls_certificate_check, "~> 1.4"}
]}.
</pre>
</details>
Expand Down Expand Up @@ -68,7 +68,7 @@ ssl:connect(Host, 443, Options, 5000)
defp deps do
[
# [...]
{:tls_certificate_check, "~> 1.3"}
{:tls_certificate_check, "~> 1.4"}
]
end
</pre>
Expand Down

0 comments on commit 3a79993

Please sign in to comment.