From 90062f86925ad8fca22bb303b85760ba9049c7fc Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Thu, 23 May 2024 14:51:36 +1000 Subject: [PATCH 1/3] Use TypeOperators language pragma --- tests/properties/Properties.hs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 From 40b34f40814fd14e3656f4d7311b257c120f4132 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Thu, 23 May 2024 14:52:38 +1000 Subject: [PATCH 2/3] CI: Add ghc 9.10 to the build matrix --- .github/workflows/haskell-ci.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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 From c8f3c26eea735968fee5ba5b80e1fbadb18e7884 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Thu, 23 May 2024 14:52:55 +1000 Subject: [PATCH 3/3] Version 0.9.0.2 --- CHANGELOG.md | 4 ++++ vector-algorithms.cabal | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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/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