We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e12591 commit 6530da2Copy full SHA for 6530da2
1 file changed
README.md
@@ -58,18 +58,15 @@ If `Mint.WebSocket.upgrade/4` returns
58
Then the server does not support HTTP/2 WebSockets or does not have them
59
enabled.
60
61
-HTTP/2 support for extended CONNECT has been merged into Mint's main branch
62
-but is not yet published. If you need HTTP/2 support, use an override:
+Support for HTTP/2 extended CONNECT was added to Mint in version `1.4.0`.
+If you need HTTP/2 support, make sure you require that version as a minimum.
63
64
```elixir
65
# mix.exs
66
def deps do
67
[
68
{:mint_web_socket, "~> 0.1"},
69
- {:mint,
70
- git: "https://github.com/elixir-mint/mint.git",
71
- ref: "488a6ba5fd418a52f697a8d5f377c629ea96af92",
72
- override: true},
+ {:mint, "~> 1.4"},
73
# ..
74
]
75
end
0 commit comments