warp-quic 0.0.2 → 0.0.3
raw patch · 3 files changed
+11/−3 lines, 3 filesdep ~http3dep ~quicPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: http3, quic
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Network/Wai/Handler/WarpQUIC.hs +5/−1
- warp-quic.cabal +2/−2
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for warp-quic +## 0.0.3++* Using http3 v0.1.+ ## 0.0.2 * Labeling threads.
Network/Wai/Handler/WarpQUIC.hs view
@@ -52,7 +52,11 @@ } pread = pReadMaker ii timmgr = timeoutManager ii- conf = H3.Config H3.defaultHooks pread timmgr+ conf =+ H3.defaultConfig+ { H3.confPositionReadMaker = pread+ , H3.confTimeoutManager = timmgr+ } case malpn of Nothing -> return () Just appProto -> do
warp-quic.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: warp-quic-version: 0.0.2+version: 0.0.3 license: BSD3 license-file: LICENSE maintainer: Kazu Yamamoto <kazu@iij.ad.jp>@@ -19,7 +19,7 @@ build-depends: base >=4.13 && <5, bytestring,- http3,+ http3 >=0.1 && <0.2, network, quic >=0.2 && <0.3, tls >=1.7,