Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Added GHC 9.10.1 to the test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Aug 28, 2024
1 parent ef05fd4 commit 1424040
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
- "9.4.5"
- "9.6.4"
- "9.8.2"
- "9.10.1"

runs-on: ubuntu-latest

Expand All @@ -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'
Expand All @@ -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: |
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024-08-28 Laurent P. René de Cotret <[email protected]> 0.3.1

* Now tested with GHC 9.10.1.
* Updated dependency bounds.

2024-03-27 Laurent P. René de Cotret <[email protected]> 0.3.0

* Breaking change: update dependency bounds to require network-3.0.
Expand Down
8 changes: 4 additions & 4 deletions distributed-process-simplelocalnet.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

Expand All @@ -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,
Expand Down

0 comments on commit 1424040

Please sign in to comment.