diff --git a/.github/workflows/cabal.yml b/.github/workflows/cabal.yml index 0ca6d65b..f6fc7651 100644 --- a/.github/workflows/cabal.yml +++ b/.github/workflows/cabal.yml @@ -13,6 +13,7 @@ jobs: fail-fast: false matrix: ghc-version: + - "8.10.7" - "9.0.2" - "9.2.8" - "9.4.5" diff --git a/packages/distributed-process-async/distributed-process-async.cabal b/packages/distributed-process-async/distributed-process-async.cabal index d1e39dee..7f1c6df6 100644 --- a/packages/distributed-process-async/distributed-process-async.cabal +++ b/packages/distributed-process-async/distributed-process-async.cabal @@ -15,7 +15,7 @@ description: This package provides a higher-level interface over Processes, i concurrent, possibly distributed Process that will eventually deliver a value of type a. The package provides ways to create Async computations, wait for their results, and cancel them. category: Control -tested-with: GHC == 7.8.4 GHC == 7.10.3 +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 type: git diff --git a/packages/distributed-process-client-server/distributed-process-client-server.cabal b/packages/distributed-process-client-server/distributed-process-client-server.cabal index abd372db..f458d9c1 100644 --- a/packages/distributed-process-client-server/distributed-process-client-server.cabal +++ b/packages/distributed-process-client-server/distributed-process-client-server.cabal @@ -16,7 +16,7 @@ description: Modelled after Erlang OTP's gen_server, this framework provides development into a set of modules and standards designed to help you build concurrent, distributed applications with relative ease. category: Control -Tested-With: GHC==8.2.2 +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 type: git diff --git a/packages/distributed-process-execution/distributed-process-execution.cabal b/packages/distributed-process-execution/distributed-process-execution.cabal index 668aece3..419be91e 100644 --- a/packages/distributed-process-execution/distributed-process-execution.cabal +++ b/packages/distributed-process-execution/distributed-process-execution.cabal @@ -16,7 +16,7 @@ description: The currently implementation provides only a subset of the plumbing required, comprising tools for event management, mailbox buffering and message routing. category: Control -tested-with: GHC == 7.4.2 GHC == 7.6.2 +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 extra-source-files: ChangeLog source-repository head diff --git a/packages/distributed-process-extras/distributed-process-extras.cabal b/packages/distributed-process-extras/distributed-process-extras.cabal index d510242c..7d89226a 100644 --- a/packages/distributed-process-extras/distributed-process-extras.cabal +++ b/packages/distributed-process-extras/distributed-process-extras.cabal @@ -14,7 +14,7 @@ synopsis: Cloud Haskell Extras description: Supporting library, providing common types and utilities used by the various libraries built on top of distributed-process category: Control -Tested-With: GHC==7.10.3 GHC==8.0.1 GHC==8.0.2 +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 extra-source-files: ChangeLog source-repository head diff --git a/packages/distributed-process-simplelocalnet/distributed-process-simplelocalnet.cabal b/packages/distributed-process-simplelocalnet/distributed-process-simplelocalnet.cabal index cb75e8c7..d067877b 100644 --- a/packages/distributed-process-simplelocalnet/distributed-process-simplelocalnet.cabal +++ b/packages/distributed-process-simplelocalnet/distributed-process-simplelocalnet.cabal @@ -15,7 +15,7 @@ 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 diff --git a/packages/distributed-process-supervisor/distributed-process-supervisor.cabal b/packages/distributed-process-supervisor/distributed-process-supervisor.cabal index 3feaf0e8..1d06b609 100644 --- a/packages/distributed-process-supervisor/distributed-process-supervisor.cabal +++ b/packages/distributed-process-supervisor/distributed-process-supervisor.cabal @@ -20,7 +20,7 @@ description: A part of the Cloud Haskell framework For detailed information see "Control.Distributed.Process.Supervisor" category: Control -tested-with: GHC == 8.2.2 +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 extra-source-files: ChangeLog source-repository head diff --git a/packages/distributed-process/distributed-process.cabal b/packages/distributed-process/distributed-process.cabal index ab554aef..8ddf61d3 100644 --- a/packages/distributed-process/distributed-process.cabal +++ b/packages/distributed-process/distributed-process.cabal @@ -21,7 +21,7 @@ Description: This is an implementation of Cloud Haskell, as described in You will probably also want to install a Cloud Haskell backend such as distributed-process-simplelocalnet. -Tested-With: GHC==7.10.3 GHC==8.0.2 GHC==8.2.2 GHC==8.4.4 +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 diff --git a/packages/distributed-static/distributed-static.cabal b/packages/distributed-static/distributed-static.cabal index 35bf02bf..01753188 100644 --- a/packages/distributed-static/distributed-static.cabal +++ b/packages/distributed-static/distributed-static.cabal @@ -25,7 +25,7 @@ Copyright: Well-Typed LLP Category: Control Build-Type: Simple extra-source-files: ChangeLog -Tested-With: GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 +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 Type: git diff --git a/packages/network-transport-inmemory/network-transport-inmemory.cabal b/packages/network-transport-inmemory/network-transport-inmemory.cabal index fb83e7d3..b6c5159e 100644 --- a/packages/network-transport-inmemory/network-transport-inmemory.cabal +++ b/packages/network-transport-inmemory/network-transport-inmemory.cabal @@ -21,7 +21,7 @@ Description: This is a transport implementation that could be used for local communication. All endpoints that want to comminicate should be created using the same transport. -Tested-With: GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 +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: Network extra-source-files: ChangeLog diff --git a/packages/network-transport-tcp/network-transport-tcp.cabal b/packages/network-transport-tcp/network-transport-tcp.cabal index 92045f6c..c7e1ddfa 100644 --- a/packages/network-transport-tcp/network-transport-tcp.cabal +++ b/packages/network-transport-tcp/network-transport-tcp.cabal @@ -12,7 +12,7 @@ Homepage: http://haskell-distributed.github.com Bug-Reports: https://github.com/haskell-distributed/network-transport-tcp/issues Synopsis: TCP instantiation of Network.Transport Description: TCP instantiation of Network.Transport -Tested-With: GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 +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: Network extra-source-files: ChangeLog diff --git a/packages/network-transport/network-transport.cabal b/packages/network-transport/network-transport.cabal index dc7f8c3f..d6d204d6 100644 --- a/packages/network-transport/network-transport.cabal +++ b/packages/network-transport/network-transport.cabal @@ -55,7 +55,7 @@ Description: "Network.Transport" is a Network Abstraction Layer which provides This package provides the generic interface only; you will probably also want to install at least one transport implementation (network-transport-*). -Tested-With: GHC==7.6.3 GHC==7.8.4 GHC==7.10.3 +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: Network extra-source-files: ChangeLog