distributed-static 0.3.9 → 0.3.10
raw patch · 3 files changed
+6/−3 lines, 3 filesdep ~bytestringnew-uploaderPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: bytestring
API changes (from Hackage documentation)
- Control.Distributed.Static: closureApply :: forall a b. Closure (a -> b) -> Closure a -> Closure b
+ Control.Distributed.Static: closureApply :: Closure (a -> b) -> Closure a -> Closure b
- Control.Distributed.Static: staticPtr :: forall a. Typeable a => StaticPtr a -> Static a
+ Control.Distributed.Static: staticPtr :: Typeable a => StaticPtr a -> Static a
Files
- ChangeLog +4/−0
- distributed-static.cabal +2/−2
- src/Control/Distributed/Static.hs +0/−1
ChangeLog view
@@ -1,3 +1,7 @@+2024-03-25 David Simmons-Duffin <dsd@caltech.edu> 0.3.10++* Relax bytestring bounds to to build with ghc-9.8.+ 2019-05-12 Facundo Domínguez <facundo.dominguez@tweag.io> 0.3.9 * Relax bounds to to build with ghc-8.6.
distributed-static.cabal view
@@ -1,5 +1,5 @@ Name: distributed-static-Version: 0.3.9+Version: 0.3.10 Synopsis: Compositional, type-safe, polymorphic static values and closures Description: /Towards Haskell in the Cloud/ (Epstein et al, Haskell Symposium 2011) introduces the concept of /static/ values:@@ -35,7 +35,7 @@ Build-Depends: base >= 4.8 && < 5, rank1dynamic >= 0.1 && < 0.5, containers >= 0.4 && < 0.7,- bytestring >= 0.10 && < 0.11,+ bytestring >= 0.10 && < 0.13, binary >= 0.5 && < 0.9, deepseq >= 1.3.0.1 && < 1.6 HS-Source-Dirs: src
src/Control/Distributed/Static.hs view
@@ -210,7 +210,6 @@ import Data.ByteString.Lazy (ByteString, empty) import Data.Map (Map) import qualified Data.Map as Map (lookup, empty, insert)-import Control.Applicative ((<$>), (<*>)) import Control.Arrow as Arrow ((***), app) import Control.DeepSeq (NFData(rnf), force) import Data.Rank1Dynamic (Dynamic, toDynamic, fromDynamic, dynApply)