http3 0.0.5 → 0.0.6
raw patch · 3 files changed
+7/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- http3.cabal +1/−1
- test/HTTP3/Error.hs +2/−0
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for http3 +## 0.0.6++* Rescuing GHC 9.0 for testing.+ ## 0.0.5 * Supporting http2 v4.2.0.
http3.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: http3-version: 0.0.5+version: 0.0.6 license: BSD-3-Clause license-file: LICENSE maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
test/HTTP3/Error.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE RankNTypes #-} module HTTP3.Error ( h3ErrorSpec@@ -34,6 +35,7 @@ _ -> H3.run conn cconf conf client where us = ms * 1000+ client :: H3.Client () client sendRequest = do let req = H3.requestNoBody methodGet "/" [] ret <- sendRequest req $ \_rsp -> return ()