quic 0.1.11 → 0.1.12
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- ChangeLog.md +4/−0
- Network/QUIC/Connection/Stream.hs +1/−1
- quic.cabal +1/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ ## 0.1.11 +- Rescuing GHC 8.10, 9.0 and 9.2.++## 0.1.11+ - Adding possibleMyStreams. ## 0.1.10
Network/QUIC/Connection/Stream.hs view
@@ -32,7 +32,7 @@ possibleMyStreams Connection{..} = do Concurrency{..} <- readTVarIO myStreamId let StreamIdBase base = maxStreams- return (base - (currentStream .>>. 2))+ return (base - (currentStream !>>. 2)) waitMyNewStreamId :: Connection -> IO StreamId waitMyNewStreamId Connection{..} = get myStreamId
quic.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: quic-version: 0.1.11+version: 0.1.12 license: BSD3 license-file: LICENSE maintainer: kazu@iij.ad.jp