diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index f3459e9..c45ca2e 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -32,14 +32,19 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.8.1 + - compiler: ghc-9.10.1 compilerKind: ghc - compilerVersion: 9.8.1 + compilerVersion: 9.10.1 setup-method: ghcup allow-failure: false - - compiler: ghc-9.6.3 + - compiler: ghc-9.8.2 compilerKind: ghc - compilerVersion: 9.6.3 + compilerVersion: 9.8.2 + setup-method: ghcup + allow-failure: false + - compiler: ghc-9.6.5 + compilerKind: ghc + compilerVersion: 9.6.5 setup-method: ghcup allow-failure: false - compiler: ghc-9.4.7 diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c7172..0339c07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Version 0.9.0.2 (2024-05-23) + +- Add `TypeOperators` pragma where needed. + ## Version 0.9.0.1 (2022-07-28) - Allow building with vector-0.13.*. diff --git a/tests/properties/Properties.hs b/tests/properties/Properties.hs index 207e09d..711a4ab 100644 --- a/tests/properties/Properties.hs +++ b/tests/properties/Properties.hs @@ -1,4 +1,7 @@ -{-# LANGUAGE RankNTypes, FlexibleContexts, GADTs #-} +{-# LANGUAGE FlexibleContexts #-} +{-# LANGUAGE GADTs #-} +{-# LANGUAGE RankNTypes #-} +{-# LANGUAGE TypeOperators #-} module Properties where diff --git a/vector-algorithms.cabal b/vector-algorithms.cabal index a25a089..dd0b4cc 100644 --- a/vector-algorithms.cabal +++ b/vector-algorithms.cabal @@ -1,6 +1,6 @@ cabal-version: >= 1.10 name: vector-algorithms -version: 0.9.0.1 +version: 0.9.0.2 license: BSD3 license-file: LICENSE author: Dan Doel