distributed-static 0.3.10 → 0.3.11
raw patch · 3 files changed
+30/−15 lines, 3 filesdep ~basedep ~binarydep ~containerssetup-changednew-uploaderPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, binary, containers, deepseq
API changes (from Hackage documentation)
- Control.Distributed.Static: closureApply :: Closure (a -> b) -> Closure a -> Closure b
+ Control.Distributed.Static: closureApply :: forall a b. Closure (a -> b) -> Closure a -> Closure b
- Control.Distributed.Static: staticPtr :: Typeable a => StaticPtr a -> Static a
+ Control.Distributed.Static: staticPtr :: forall a. Typeable a => StaticPtr a -> Static a
Files
- ChangeLog +5/−0
- Setup.hs +0/−2
- distributed-static.cabal +25/−13
ChangeLog view
@@ -1,3 +1,8 @@+2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.3.11++* Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1+* Updated links to point to Distributed Haskell monorepo+ 2024-03-25 David Simmons-Duffin <dsd@caltech.edu> 0.3.10 * Relax bytestring bounds to to build with ghc-9.8.
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
distributed-static.cabal view
@@ -1,5 +1,6 @@+cabal-version: 3.0 Name: distributed-static-Version: 0.3.10+Version: 0.3.11 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:@@ -15,31 +16,42 @@ and various extensions: type safety (including for polymorphic static values) and compositionality. Homepage: http://haskell-distributed.github.com-License: BSD3+License: BSD-3-Clause License-File: LICENSE Author: Edsko de Vries-Maintainer: Facundo Domínguez <facundo.dominguez@tweag.io>-Bug-Reports: https://github.com/haskell-distributed/distributed-static/issues+maintainer: The Distributed Haskell team+Bug-Reports: https://github.com/haskell-distributed/distributed-process/issues Copyright: Well-Typed LLP Category: Control Build-Type: Simple-Cabal-Version: >=1.10-extra-source-files: ChangeLog+extra-doc-files: ChangeLog+tested-with: GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1 -Source-Repository head+source-repository head Type: git- Location: https://github.com/haskell-distributed/distributed-static+ Location: https://github.com/haskell-distributed/distributed-process+ SubDir: packages/distributed-static +common warnings+ ghc-options: -Wall+ -Wcompat+ -Widentities+ -Wincomplete-uni-patterns+ -Wincomplete-record-updates+ -Wredundant-constraints+ -fhide-source-paths+ -Wpartial-fields+ Library+ import: warnings Exposed-Modules: Control.Distributed.Static- Build-Depends: base >= 4.8 && < 5,+ Build-Depends: base >= 4.14 && < 5, rank1dynamic >= 0.1 && < 0.5,- containers >= 0.4 && < 0.7,+ containers >= 0.6 && < 0.8, bytestring >= 0.10 && < 0.13,- binary >= 0.5 && < 0.9,- deepseq >= 1.3.0.1 && < 1.6+ binary >= 0.8 && < 0.9,+ deepseq >= 1.4 && < 1.6 HS-Source-Dirs: src Default-Language: Haskell2010 Default-Extensions: DeriveDataTypeable ScopedTypeVariables- GHC-Options: -Wall