Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.d/20260616_150020_cgeorgii_support_ghc_9_14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### Added

- Support GHC-9.14 and `semialign >= 1.4`.
2 changes: 1 addition & 1 deletion rel8.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ library
build-depends:
aeson
, attoparsec
, base >= 4.16 && < 4.22
, base >= 4.16 && < 4.23
, base16 >= 1.0
, base-compat >= 0.11 && < 0.15
, bifunctors
Expand Down
8 changes: 6 additions & 2 deletions src/Rel8/Schema/HTable/Vectorize.hs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import Rel8.Type.Information ( TypeInformation )

-- semialign
import Data.Align (Semialign, alignWith)
import Data.Zip (Unzip, Zip, Zippy(..), zipWith)
import Data.Zip (Unzip, Zip, Zippy(..), unzipWith, zipWith)

-- semigroupoids
import Data.Functor.Apply (Apply)
Expand Down Expand Up @@ -202,4 +202,8 @@ instance Semialign (First a) where


instance Zip (First a) where
zipWith _ (First a) _ = First a
zipWith _ (First a) _ = First a


instance Unzip (First a) where
unzipWith _ (First a) = (First a, First a)
1 change: 1 addition & 0 deletions src/Rel8/Statement.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
{-# language RecordWildCards #-}
{-# language ScopedTypeVariables #-}
{-# language StandaloneKindSignatures #-}
{-# language TypeAbstractions #-}
{-# language TypeApplications #-}

module Rel8.Statement
Expand Down
Loading