From 444d377fac1d0941721233737ee65b631ea3d056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20L=C3=A4ndle?= <969523+alaendle@users.noreply.github.com> Date: Thu, 11 May 2023 11:40:54 +0200 Subject: [PATCH] Support ghc 9.6 --- .github/workflows/ci.yml | 13 +++++++++---- stack.yaml | 2 +- typerep-map.cabal | 13 +++++++------ 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5fb27f..e9963b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,14 @@ jobs: - "8.8.4" - "8.10.7" - "9.0.2" - - "9.2.4" - - "9.4.2" + - "9.2.7" + - "9.4.5" + - "9.6.1" exclude: - os: macOS-latest - ghc: 9.2.4 + ghc: 9.4.5 + - os: macOS-latest + ghc: 9.2.7 - os: macOS-latest ghc: 9.0.2 - os: macOS-latest @@ -44,7 +47,9 @@ jobs: ghc: 8.2.2 - os: windows-latest - ghc: 9.2.4 + ghc: 9.4.5 + - os: windows-latest + ghc: 9.2.7 - os: windows-latest ghc: 9.0.2 - os: windows-latest diff --git a/stack.yaml b/stack.yaml index 63813a7..7772bd8 100644 --- a/stack.yaml +++ b/stack.yaml @@ -1 +1 @@ -resolver: lts-18.5 +resolver: nightly-2023-05-11 diff --git a/typerep-map.cabal b/typerep-map.cabal index 4650ce5..19ece14 100644 --- a/typerep-map.cabal +++ b/typerep-map.cabal @@ -23,7 +23,7 @@ license: MPL-2.0 license-file: LICENSE author: Veronika Romashkina, Vladislav Zavialov, Dmitrii Kovanikov maintainer: Kowainik -copyright: 2017-2022 Kowainik +copyright: 2017-2023 Kowainik category: Data, Data Structures, Types build-type: Simple extra-doc-files: README.md @@ -34,15 +34,16 @@ tested-with: GHC == 8.2.2 , GHC == 8.8.4 , GHC == 8.10.7 , GHC == 9.0.2 - , GHC == 9.2.4 - , GHC == 9.4.2 + , GHC == 9.2.7 + , GHC == 9.4.5 + , GHC == 9.6.1 source-repository head type: git location: https://github.com/kowainik/typerep-map.git common common-options - build-depends: base >= 4.10 && < 4.18 + build-depends: base >= 4.10 && < 4.19 default-language: Haskell2010 default-extensions: BangPatterns @@ -79,8 +80,8 @@ library Data.TypeRepMap Data.TypeRepMap.Internal - build-depends: ghc-prim >= 0.5.1.1 && < 0.10 - , primitive ^>= 0.7.0 + build-depends: ghc-prim >= 0.5.1.1 && < 0.11 + , primitive >= 0.7.0 && < 0.9 , deepseq ^>= 1.4 library typerep-extra-impls