diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7233c4..29e52bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,7 @@ jobs: - "9.4.5" - "9.6.4" - "9.8.2" + - "9.10.1" runs-on: ubuntu-latest @@ -28,7 +29,7 @@ jobs: - name: Generate freeze file run: | cabal update - cabal configure --disable-optimization + cabal configure --disable-optimization --enable-tests cabal freeze # 'cabal freeze' will use the nearest index state which might not be exactly equal # to the index state specified in 'cabal.project' @@ -46,11 +47,11 @@ jobs: - name: Build dependencies only run: | - cabal build --enable-tests --only-dependencies + cabal build --only-dependencies - name: Build this package run: | - cabal build --enable-tests + cabal build - name: Run tests run: | diff --git a/ChangeLog b/ChangeLog index 6421d2d..b968bf9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-08-28 Laurent P. René de Cotret 0.3.1 + +* Now tested with GHC 9.10.1. +* Updated dependency bounds. + 2024-03-27 Laurent P. René de Cotret 0.3.0 * Breaking change: update dependency bounds to require network-3.0. diff --git a/distributed-process-simplelocalnet.cabal b/distributed-process-simplelocalnet.cabal index 356ff79..a9e64a0 100644 --- a/distributed-process-simplelocalnet.cabal +++ b/distributed-process-simplelocalnet.cabal @@ -1,5 +1,5 @@ Name: distributed-process-simplelocalnet -Version: 0.3.0 +Version: 0.3.1 Cabal-Version: >=1.10 Build-Type: Simple License: BSD3 @@ -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 +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 Category: Control extra-source-files: ChangeLog @@ -25,9 +25,9 @@ Source-Repository head Library Build-Depends: base >= 4.4 && < 5, - bytestring >= 0.9 && < 0.12, + bytestring >= 0.9 && < 0.13, exceptions >= 0.5 && <0.11, - network >= 3.0 && < 3.2, + network >= 3.0 && < 3.3, network-multicast >= 0.1.1 && < 0.4, data-accessor >= 0.2 && < 0.3, binary >= 0.6.3 && < 0.9,