From d61cac50cd27ca8d2e15d805a61ea7999a3bfc7a Mon Sep 17 00:00:00 2001 From: Vladislav Zavialov Date: Mon, 14 Feb 2022 16:18:02 +0300 Subject: [PATCH] Support 9.2 and update vinyl upper bound --- .github/workflows/ci.yml | 7 ++++--- union.cabal | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e6b1c1..ffd8b6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,13 @@ jobs: - "8.4.4" - "8.6.5" - "8.8.4" - - "8.10.2" - - "9.0.1" + - "8.10.7" + - "9.0.2" + - "9.2.1" runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-haskell@v1 + - uses: haskell/actions/setup@v1 with: cabal-version: "3.4" ghc-version: ${{ matrix.ghc-version }} diff --git a/union.cabal b/union.cabal index 5d788e0..edcdb13 100644 --- a/union.cabal +++ b/union.cabal @@ -38,7 +38,7 @@ library ScopedTypeVariables TypeOperators build-depends: base >=4.9 && <4.17 - , vinyl >=0.5 && <0.14 + , vinyl >=0.5 && <0.15 , profunctors >=5.1 && <5.7 , tagged >=0.8 && <0.9 , deepseq >=1.4 && <1.5 @@ -57,4 +57,4 @@ benchmark bench , criterion hs-source-dirs: bench default-language: Haskell2010 - ghc-options: -Wall -O2 -fno-warn-orphans + ghc-options: -Wall -O2 -Wno-orphans