Skip to content

Commit

Permalink
Increased upper bound for network
Browse files Browse the repository at this point in the history
  • Loading branch information
disco-dave authored and disco-dave committed May 16, 2024
1 parent 6bf9413 commit 4e5cc0e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/actions/cabal-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ inputs:
cabal-version:
description: "Version of cabal to use"
required: false
default: "3.8.1.0"
default: "3.10.3.0"
ghc-version:
description: "Version of ghc to use"
required: false
default: "8.10.7"
default: "9.8.2"
runs:
using: "composite"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/stack-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
stack-version:
description: "Version of stack to use"
required: false
default: "2.9.1"
default: "2.15.5"
resolver:
description: "Resolver to use from stackage"
required: false
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: "Set up hlint"
uses: haskell/actions/hlint-setup@v2
with:
version: "3.6.1"
version: "3.8"

- name: "Run hlint"
uses: haskell/actions/hlint-run@v2
Expand All @@ -32,19 +32,19 @@ jobs:

- uses: haskell-actions/run-fourmolu@v9
with:
version: "0.14.1.0"
version: "0.15.0.0"

cabal:
name: cabal ${{ matrix.cabal }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
cabal: ["3.10.2.0"]
cabal: ["3.10.3.0"]
ghc:
- "9.4.8"
- "9.6.3"
- "9.8.1"
- "9.6.5"
- "9.8.2"
steps:
- uses: actions/checkout@v4

Expand All @@ -60,7 +60,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
stack: ["2.13.1"]
stack: ["2.15.5"]
resolver:
- "lts-21"
- "lts-22"
Expand Down Expand Up @@ -89,8 +89,8 @@ jobs:
id: setup-haskell-cabal
name: Setup Haskell and Cabal
with:
ghc-version: "9.8.1"
cabal-version: "3.10.2.0"
ghc-version: "9.8.2"
cabal-version: "3.10.3.0"

- name: Freeze
run: |
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ and this project adheres to [Haskell Package Versioning Policy](https://pvp.hask

## [Unreleased]

## [0.1.2.4] - 2024-05-16

### Fixed

- Increased upper bound for `network`

## [0.1.2.3] - 2024-01-01

### Fixed
Expand Down Expand Up @@ -72,7 +78,8 @@ and this project adheres to [Haskell Package Versioning Policy](https://pvp.hask
- Initial release


[unreleased]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.3...HEAD
[unreleased]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.4...HEAD
[0.1.2.4]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.3...releases/0.1.2.4
[0.1.2.3]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.2...releases/0.1.2.3
[0.1.2.2]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.1...releases/0.1.2.2
[0.1.2.1]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.0...releases/0.1.2.1
Expand Down
4 changes: 2 additions & 2 deletions katip-wai.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.2

name: katip-wai
version: 0.1.2.3
version: 0.1.2.4

synopsis: WAI middleware for logging request and response info through katip.
description: WAI middleware for logging request and response info through katip. Please see the README on GitHub at <https://github.com/Disco-Dave/katip-wai#readme>
Expand Down Expand Up @@ -78,7 +78,7 @@ library

build-depends:
, clock >=0.8 && <0.9
, network >=3.0 && <3.2
, network >=3.0 && <3.3

test-suite katip-wai-test
import: shared
Expand Down
2 changes: 1 addition & 1 deletion scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
repo_path="$(realpath "$0" | xargs dirname | xargs dirname)"
cd "$repo_path"

ghc_versions=("9.4" "9.6" "9.8")
ghc_versions=("9.6" "9.8" "9.10")

cabal update

Expand Down

0 comments on commit 4e5cc0e

Please sign in to comment.