distributed-process-simplelocalnet 0.3.1 → 0.3.2
raw patch · 3 files changed
+32/−17 lines, 3 filesdep ~basedep ~binarydep ~bytestringsetup-changedPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, binary, bytestring, containers, exceptions
API changes (from Hackage documentation)
Files
- ChangeLog +5/−0
- Setup.hs +0/−2
- distributed-process-simplelocalnet.cabal +27/−15
ChangeLog view
@@ -1,3 +1,8 @@+2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.3.2++* Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1+* Updated links to point to Distributed Haskell monorepo+ 2024-08-28 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.3.1 * Now tested with GHC 9.10.1.
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
distributed-process-simplelocalnet.cabal view
@@ -1,37 +1,49 @@+cabal-version: 3.0 Name: distributed-process-simplelocalnet-Version: 0.3.1-Cabal-Version: >=1.10+Version: 0.3.2 Build-Type: Simple-License: BSD3+License: BSD-3-Clause License-File: LICENSE Copyright: Well-Typed LLP Author: Duncan Coutts, Nicolas Wu, Edsko de Vries-Maintainer: The Distributed Haskell team+maintainer: The Distributed Haskell team Stability: experimental Homepage: http://haskell-distributed.github.com-Bug-Reports: https://github.com/haskell-distributed/distributed-process-simplelocalnet/issues+Bug-Reports: https://github.com/haskell-distributed/distributed-process/issues Synopsis: Simple zero-configuration backend for Cloud Haskell Description: Simple backend based on the TCP transport which offers node discovery based on UDP multicast. This is a zero-configuration backend designed to get you going with Cloud Haskell quickly without imposing any structure on your application.-Tested-With: GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1+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 Category: Control-extra-source-files: ChangeLog+extra-doc-files: ChangeLog -Source-Repository head+source-repository head Type: git- Location: https://github.com/haskell-distributed/distributed-process-simplelocalnet+ Location: https://github.com/haskell-distributed/distributed-process+ SubDir: packages/distributed-process-simplelocalnet +common warnings+ ghc-options: -Wall+ -Wcompat+ -Widentities+ -Wincomplete-uni-patterns+ -Wincomplete-record-updates+ -Wredundant-constraints+ -fhide-source-paths+ -Wpartial-fields+ Library- Build-Depends: base >= 4.4 && < 5,- bytestring >= 0.9 && < 0.13,- exceptions >= 0.5 && <0.11,+ import: warnings+ Build-Depends: base >= 4.14 && < 5,+ bytestring >= 0.10 && < 0.13,+ exceptions >= 0.10 && <0.11, network >= 3.0 && < 3.3, network-multicast >= 0.1.1 && < 0.4, data-accessor >= 0.2 && < 0.3,- binary >= 0.6.3 && < 0.9,- containers >= 0.4 && < 0.8,+ binary >= 0.8 && < 0.9,+ containers >= 0.6 && < 0.8, transformers >= 0.2 && < 0.7, network-transport >= 0.5 && < 0.6, network-transport-tcp >= 0.4 && < 0.9,@@ -39,10 +51,10 @@ Exposed-modules: Control.Distributed.Process.Backend.SimpleLocalnet, Control.Distributed.Process.Backend.SimpleLocalnet.Internal.Multicast Default-Language: Haskell2010- ghc-options: -Wall HS-Source-Dirs: src Test-Suite SimpleLocalNet-TestSuite+ import: warnings Type: exitcode-stdio-1.0 Hs-Source-Dirs: tests Main-Is: Main.hs