bert 1.2.2.2 → 1.2.2.3
raw patch · 3 files changed
+8/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- bert.cabal +1/−1
- src/Network/BERT/Transport.hs +2/−2
CHANGELOG.md view
@@ -1,3 +1,8 @@+Version 1.2.2.3+---------------++Fix compatibility with recent conduit.+ Version 1.2.2.2 ---------------
bert.cabal view
@@ -1,6 +1,6 @@ cabal-version: >= 1.16 name: bert-version: 1.2.2.2+version: 1.2.2.3 build-type: Simple license: BSD3 license-file: LICENSE
src/Network/BERT/Transport.hs view
@@ -21,7 +21,7 @@ import Control.Monad import Control.Applicative import Control.Monad.Reader-import Network.Socket+import Network.Socket as Net import Data.Conduit import Data.Conduit.Network import Data.Conduit.Serialization.Binary@@ -82,7 +82,7 @@ tcpClient host port = do sock <- socket AF_INET Stream defaultProtocol sa <- SockAddrInet port <$> resolve host- connect sock sa+ Net.connect sock sa return $ TCP sock -- | The TCP server