Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 09bad0b

Browse files
committed
Bump bytestring and deepseq versions; fix Control.Applicative warnings
1 parent fbcb151 commit 09bad0b

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-03-25 David Simmons-Duffin <[email protected]> 0.5.7
2+
3+
* Bump bytestring and deepseq versions to build with GHC 9.8.
4+
15
2022-08-30 Facundo Domínguez <[email protected]> 0.5.6
26

37
* Fix extension fields in the cabal file (#41).

network-transport.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: network-transport
2-
Version: 0.5.6
2+
Version: 0.5.7
33
Cabal-Version: >=1.10
44
Build-Type: Simple
55
License: BSD3
@@ -66,10 +66,10 @@ Source-Repository head
6666
Library
6767
Build-Depends: base >= 4.6 && < 5,
6868
binary >= 0.5 && < 0.9,
69-
bytestring >= 0.9 && < 0.12,
69+
bytestring >= 0.9 && < 0.13,
7070
hashable >= 1.2.0.5 && < 1.5,
7171
transformers >= 0.2 && < 0.7,
72-
deepseq >= 1.0 && < 1.5
72+
deepseq >= 1.0 && < 1.6
7373
if impl(ghc < 7.6)
7474
Build-Depends: ghc-prim >= 0.2 && < 0.4
7575
Exposed-Modules: Network.Transport,

src/Network/Transport.hs

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ import qualified Data.ByteString as BS (copy)
2929
import qualified Data.ByteString.Char8 as BSC (unpack)
3030
import Control.DeepSeq (NFData(rnf))
3131
import Control.Exception (Exception)
32-
import Control.Applicative ((<$>))
3332
import Data.Typeable (Typeable)
3433
import Data.Binary (Binary(..))
3534
import Data.Hashable

src/Network/Transport/Internal.hs

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ import qualified Data.ByteString.Internal as BSI
3737
, toForeignPtr
3838
)
3939
import Data.Word (Word32, Word16)
40-
import Control.Applicative ((<$>))
4140
import Control.Monad.IO.Class (MonadIO, liftIO)
4241
import Control.Exception
4342
( IOException

0 commit comments

Comments
 (0)