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

Commit dc9176c

Browse files
committed
Bump bytestring; fix redundant import warning
1 parent 03604c7 commit dc9176c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
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.3.10
2+
3+
* Relax bytestring bounds to to build with ghc-9.8.
4+
15
2019-05-12 Facundo Domínguez <[email protected]> 0.3.9
26

37
* Relax bounds to to build with ghc-8.6.

distributed-static.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: distributed-static
2-
Version: 0.3.9
2+
Version: 0.3.10
33
Synopsis: Compositional, type-safe, polymorphic static values and closures
44
Description: /Towards Haskell in the Cloud/ (Epstein et al, Haskell
55
Symposium 2011) introduces the concept of /static/ values:
@@ -35,7 +35,7 @@ Library
3535
Build-Depends: base >= 4.8 && < 5,
3636
rank1dynamic >= 0.1 && < 0.5,
3737
containers >= 0.4 && < 0.7,
38-
bytestring >= 0.10 && < 0.12,
38+
bytestring >= 0.10 && < 0.13,
3939
binary >= 0.5 && < 0.9,
4040
deepseq >= 1.3.0.1 && < 1.6
4141
HS-Source-Dirs: src

src/Control/Distributed/Static.hs

-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ import Data.Binary
210210
import Data.ByteString.Lazy (ByteString, empty)
211211
import Data.Map (Map)
212212
import qualified Data.Map as Map (lookup, empty, insert)
213-
import Control.Applicative ((<$>), (<*>))
214213
import Control.Arrow as Arrow ((***), app)
215214
import Control.DeepSeq (NFData(rnf), force)
216215
import Data.Rank1Dynamic (Dynamic, toDynamic, fromDynamic, dynApply)

0 commit comments

Comments
 (0)